|
1
|
|
/* =========================================================== |
|
2
|
|
* Orson Charts : a 3D chart library for the Java(tm) platform |
|
3
|
|
* =========================================================== |
|
4
|
|
* |
|
5
|
|
* (C)opyright 2013-2020, by Object Refinery Limited. All rights reserved. |
|
6
|
|
* |
|
7
|
|
* https://github.com/jfree/orson-charts |
|
8
|
|
* |
|
9
|
|
* This program is free software: you can redistribute it and/or modify |
|
10
|
|
* it under the terms of the GNU General Public License as published by |
|
11
|
|
* the Free Software Foundation, either version 3 of the License, or |
|
12
|
|
* (at your option) any later version. |
|
13
|
|
* |
|
14
|
|
* This program is distributed in the hope that it will be useful, |
|
15
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17
|
|
* GNU General Public License for more details. |
|
18
|
|
* |
|
19
|
|
* You should have received a copy of the GNU General Public License |
|
20
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
21
|
|
* |
|
22
|
|
* [Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
|
23
|
|
* Other names may be trademarks of their respective owners.] |
|
24
|
|
* |
|
25
|
|
* If you do not wish to be bound by the terms of the GPL, an alternative |
|
26
|
|
* commercial license can be purchased. For details, please see visit the |
|
27
|
|
* Orson Charts home page: |
|
28
|
|
* |
|
29
|
|
* http://www.object-refinery.com/orsoncharts/index.html |
|
30
|
|
* |
|
31
|
|
*/ |
|
32
|
|
|
|
33
|
|
package org.jfree.chart3d.renderer.category; |
|
34
|
|
|
|
35
|
|
import java.awt.Color; |
|
36
|
|
import java.io.Serializable; |
|
37
|
|
|
|
38
|
|
import org.jfree.chart3d.Chart3D; |
|
39
|
|
import org.jfree.chart3d.Chart3DFactory; |
|
40
|
|
import org.jfree.chart3d.axis.CategoryAxis3D; |
|
41
|
|
import org.jfree.chart3d.axis.ValueAxis3D; |
|
42
|
|
import org.jfree.chart3d.data.KeyedValues3DItemKey; |
|
43
|
|
import org.jfree.chart3d.data.Range; |
|
44
|
|
import org.jfree.chart3d.data.category.CategoryDataset3D; |
|
45
|
|
import org.jfree.chart3d.graphics3d.Dimension3D; |
|
46
|
|
import org.jfree.chart3d.graphics3d.Object3D; |
|
47
|
|
import org.jfree.chart3d.graphics3d.Offset3D; |
|
48
|
|
import org.jfree.chart3d.graphics3d.World; |
|
49
|
|
import org.jfree.chart3d.internal.ObjectUtils; |
|
50
|
|
import org.jfree.chart3d.label.ItemLabelPositioning; |
|
51
|
|
import org.jfree.chart3d.plot.CategoryPlot3D; |
|
52
|
|
import org.jfree.chart3d.renderer.Renderer3DChangeEvent; |
|
53
|
|
|
|
54
|
|
/** |
|
55
|
|
* A renderer that can be used with the {@link CategoryPlot3D} class to create |
|
56
|
|
* 3D lines charts from data in a {@link CategoryDataset3D}. The |
|
57
|
|
* {@code createLineChart()} method in the {@link Chart3DFactory} class |
|
58
|
|
* will construct a chart that uses this renderer. Here is a sample: |
|
59
|
|
* <div> |
|
60
|
|
* <img src="../../../../../../doc-files/LineChart3DDemo1.svg" |
|
61
|
|
* alt="LineChart3DDemo1.svg" width="500" height="359"> |
|
62
|
|
* </div> |
|
63
|
|
* (refer to {@code LineChart3DDemo1.java} for the code to generate the |
|
64
|
|
* above chart). |
|
65
|
|
* <br><br> |
|
66
|
|
* Some attributes in the renderer are specified in "world units" - see the |
|
67
|
|
* {@link Chart3D} class description for more information about world units. |
|
68
|
|
* <br><br> |
|
69
|
|
* There is a factory method to create a chart using this renderer - see |
|
70
|
|
* {@link Chart3DFactory#createLineChart(String, String, CategoryDataset3D, |
|
71
|
|
* String, String, String)}. |
|
72
|
|
* <br><br> |
|
73
|
|
* NOTE: This class is serializable, but the serialization format is subject |
|
74
|
|
* to change in future releases and should not be relied upon for persisting |
|
75
|
|
* instances of this class. |
|
76
|
|
*/ |
|
77
|
|
@SuppressWarnings("serial") |
|
78
|
|
public class LineRenderer3D extends AbstractCategoryRenderer3D |
|
79
|
|
implements Serializable { |
|
80
|
|
|
|
81
|
|
/** The line width (in world units). */ |
|
82
|
|
private double lineWidth; |
|
83
|
|
|
|
84
|
|
/** The line height (in world units). */ |
|
85
|
|
private double lineHeight; |
|
86
|
|
|
|
87
|
|
/** |
|
88
|
|
* For isolated data values this attribute controls the width (x-axis) of |
|
89
|
|
* the box representing the data item, it is expressed as a percentage of |
|
90
|
|
* the category width. |
|
91
|
|
*/ |
|
92
|
|
private double isolatedItemWidthPercent; |
|
93
|
|
|
|
94
|
|
/** |
|
95
|
|
* The color source that determines the color used to highlight clipped |
|
96
|
|
* items in the chart. |
|
97
|
|
*/ |
|
98
|
|
private CategoryColorSource clipColorSource; |
|
99
|
|
|
|
100
|
|
/** |
|
101
|
|
* Creates a new instance with default attribute values. |
|
102
|
|
*/ |
|
103
|
|
public LineRenderer3D() { |
|
104
|
8
1. : Substituted 0.4 with 1.0 → SURVIVED
2. : Removed assignment to member variable lineWidth → SURVIVED
3. : Substituted 0.4 with 1.0 → SURVIVED
4. : Substituted 0.4 with 0.0 → SURVIVED
5. : Substituted 0.4 with -1.0 → SURVIVED
6. : Substituted 0.4 with -0.4 → SURVIVED
7. : Substituted 0.4 with 1.4 → SURVIVED
8. : Substituted 0.4 with -0.6 → SURVIVED
|
this.lineWidth = 0.4; |
|
105
|
8
1. : Substituted 0.2 with 1.0 → SURVIVED
2. : Removed assignment to member variable lineHeight → SURVIVED
3. : Substituted 0.2 with 1.0 → SURVIVED
4. : Substituted 0.2 with 0.0 → SURVIVED
5. : Substituted 0.2 with -1.0 → SURVIVED
6. : Substituted 0.2 with -0.2 → SURVIVED
7. : Substituted 0.2 with 1.2 → SURVIVED
8. : Substituted 0.2 with -0.8 → SURVIVED
|
this.lineHeight = 0.2; |
|
106
|
8
1. : Substituted 0.25 with 1.0 → SURVIVED
2. : Removed assignment to member variable isolatedItemWidthPercent → SURVIVED
3. : Substituted 0.25 with 1.0 → SURVIVED
4. : Substituted 0.25 with 0.0 → SURVIVED
5. : Substituted 0.25 with -1.0 → SURVIVED
6. : Substituted 0.25 with -0.25 → SURVIVED
7. : Substituted 0.25 with 1.25 → SURVIVED
8. : Substituted 0.25 with -0.75 → SURVIVED
|
this.isolatedItemWidthPercent = 0.25; |
|
107
|
13
1. : removed call to org/jfree/chart3d/renderer/category/StandardCategoryColorSource::<init> → SURVIVED
2. : Removed assignment to member variable clipColorSource → SURVIVED
3. : Substituted 1 with 0 → KILLED
4. : Substituted 0 with 1 → KILLED
5. : Substituted 0 with 1 → KILLED
6. : Substituted 1 with 0 → KILLED
7. : Substituted 1 with -1 → KILLED
8. : Substituted 0 with -1 → KILLED
9. : Substituted 1 with -1 → KILLED
10. : Substituted 1 with 2 → KILLED
11. : Substituted 0 with 1 → KILLED
12. : Substituted 1 with 0 → KILLED
13. : Substituted 0 with -1 → KILLED
|
this.clipColorSource = new StandardCategoryColorSource(Color.RED); |
|
108
|
|
} |
|
109
|
|
|
|
110
|
|
/** |
|
111
|
|
* Returns the line width in world units. The default value is |
|
112
|
|
* {@code 0.4}. |
|
113
|
|
* |
|
114
|
|
* @return The line width in world units. |
|
115
|
|
*/ |
|
116
|
|
public double getLineWidth() { |
|
117
|
7
1. getLineWidth : replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineWidth → NO_COVERAGE
2. getLineWidth : replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineWidth → NO_COVERAGE
3. getLineWidth : Negated double field lineWidth → NO_COVERAGE
4. getLineWidth : Incremented (a++) double field lineWidth → NO_COVERAGE
5. getLineWidth : Decremented (a--) double field lineWidth → NO_COVERAGE
6. getLineWidth : Incremented (++a) double field lineWidth → NO_COVERAGE
7. getLineWidth : Decremented (--a) double field → NO_COVERAGE
|
return this.lineWidth; |
|
118
|
|
} |
|
119
|
|
|
|
120
|
|
/** |
|
121
|
|
* Sets the line width (in world units) and sends a |
|
122
|
|
* {@link Renderer3DChangeEvent} to all registered listeners. |
|
123
|
|
* |
|
124
|
|
* @param width the width (in world units). |
|
125
|
|
*/ |
|
126
|
|
public void setLineWidth(double width) { |
|
127
|
6
1. setLineWidth : Negated double local variable number 1 → SURVIVED
2. setLineWidth : Incremented (a++) double local variable number 1 → SURVIVED
3. setLineWidth : Decremented (a--) double local variable number 1 → SURVIVED
4. setLineWidth : Incremented (++a) double local variable number 1 → SURVIVED
5. setLineWidth : Decremented (--a) double local variable number 1 → SURVIVED
6. setLineWidth : Removed assignment to member variable lineWidth → KILLED
|
this.lineWidth = width; |
|
128
|
7
1. setLineWidth : Substituted 1 with 0 → SURVIVED
2. setLineWidth : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED
3. setLineWidth : Substituted 1 with 0 → SURVIVED
4. setLineWidth : Substituted 1 with -1 → SURVIVED
5. setLineWidth : Substituted 1 with -1 → SURVIVED
6. setLineWidth : Substituted 1 with 2 → SURVIVED
7. setLineWidth : Substituted 1 with 0 → SURVIVED
|
fireChangeEvent(true); |
|
129
|
|
} |
|
130
|
|
|
|
131
|
|
/** |
|
132
|
|
* Returns the line height in world units. The default value is |
|
133
|
|
* {@code 0.2}. |
|
134
|
|
* |
|
135
|
|
* @return The line height in world units. |
|
136
|
|
*/ |
|
137
|
|
public double getLineHeight() { |
|
138
|
7
1. getLineHeight : replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineHeight → NO_COVERAGE
2. getLineHeight : replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineHeight → NO_COVERAGE
3. getLineHeight : Negated double field lineHeight → NO_COVERAGE
4. getLineHeight : Incremented (a++) double field lineHeight → NO_COVERAGE
5. getLineHeight : Decremented (a--) double field lineHeight → NO_COVERAGE
6. getLineHeight : Incremented (++a) double field lineHeight → NO_COVERAGE
7. getLineHeight : Decremented (--a) double field → NO_COVERAGE
|
return this.lineHeight; |
|
139
|
|
} |
|
140
|
|
|
|
141
|
|
/** |
|
142
|
|
* Sets the line height (in world units) and sends a |
|
143
|
|
* {@link Renderer3DChangeEvent} to all registered listeners. |
|
144
|
|
* |
|
145
|
|
* @param height the height (in world units). |
|
146
|
|
*/ |
|
147
|
|
public void setLineHeight(double height) { |
|
148
|
6
1. setLineHeight : Negated double local variable number 1 → SURVIVED
2. setLineHeight : Incremented (a++) double local variable number 1 → SURVIVED
3. setLineHeight : Decremented (a--) double local variable number 1 → SURVIVED
4. setLineHeight : Incremented (++a) double local variable number 1 → SURVIVED
5. setLineHeight : Decremented (--a) double local variable number 1 → SURVIVED
6. setLineHeight : Removed assignment to member variable lineHeight → KILLED
|
this.lineHeight = height; |
|
149
|
7
1. setLineHeight : Substituted 1 with 0 → SURVIVED
2. setLineHeight : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED
3. setLineHeight : Substituted 1 with 0 → SURVIVED
4. setLineHeight : Substituted 1 with -1 → SURVIVED
5. setLineHeight : Substituted 1 with -1 → SURVIVED
6. setLineHeight : Substituted 1 with 2 → SURVIVED
7. setLineHeight : Substituted 1 with 0 → SURVIVED
|
fireChangeEvent(true); |
|
150
|
|
} |
|
151
|
|
|
|
152
|
|
/** |
|
153
|
|
* Returns the width for isolated data items as a percentage of the |
|
154
|
|
* category width. The default value is 0.25 (twenty five percent). |
|
155
|
|
* |
|
156
|
|
* @return The width percentage. |
|
157
|
|
* |
|
158
|
|
* @since 1.3 |
|
159
|
|
*/ |
|
160
|
|
public double getIsolatedItemWidthPercent() { |
|
161
|
7
1. getIsolatedItemWidthPercent : replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getIsolatedItemWidthPercent → NO_COVERAGE
2. getIsolatedItemWidthPercent : replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getIsolatedItemWidthPercent → NO_COVERAGE
3. getIsolatedItemWidthPercent : Negated double field isolatedItemWidthPercent → NO_COVERAGE
4. getIsolatedItemWidthPercent : Incremented (a++) double field isolatedItemWidthPercent → NO_COVERAGE
5. getIsolatedItemWidthPercent : Decremented (a--) double field isolatedItemWidthPercent → NO_COVERAGE
6. getIsolatedItemWidthPercent : Incremented (++a) double field isolatedItemWidthPercent → NO_COVERAGE
7. getIsolatedItemWidthPercent : Decremented (--a) double field → NO_COVERAGE
|
return this.isolatedItemWidthPercent; |
|
162
|
|
} |
|
163
|
|
|
|
164
|
|
/** |
|
165
|
|
* Sets the width for isolated data items as a percentage of the category |
|
166
|
|
* width and sends a change event to all registered listeners. |
|
167
|
|
* |
|
168
|
|
* @param percent the new percentage. |
|
169
|
|
* |
|
170
|
|
* @since 1.3 |
|
171
|
|
*/ |
|
172
|
|
public void setIsolatedItemWidthPercent(double percent) { |
|
173
|
6
1. setIsolatedItemWidthPercent : Removed assignment to member variable isolatedItemWidthPercent → NO_COVERAGE
2. setIsolatedItemWidthPercent : Negated double local variable number 1 → NO_COVERAGE
3. setIsolatedItemWidthPercent : Incremented (a++) double local variable number 1 → NO_COVERAGE
4. setIsolatedItemWidthPercent : Decremented (a--) double local variable number 1 → NO_COVERAGE
5. setIsolatedItemWidthPercent : Incremented (++a) double local variable number 1 → NO_COVERAGE
6. setIsolatedItemWidthPercent : Decremented (--a) double local variable number 1 → NO_COVERAGE
|
this.isolatedItemWidthPercent = percent; |
|
174
|
7
1. setIsolatedItemWidthPercent : Substituted 1 with 0 → NO_COVERAGE
2. setIsolatedItemWidthPercent : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → NO_COVERAGE
3. setIsolatedItemWidthPercent : Substituted 1 with 0 → NO_COVERAGE
4. setIsolatedItemWidthPercent : Substituted 1 with -1 → NO_COVERAGE
5. setIsolatedItemWidthPercent : Substituted 1 with -1 → NO_COVERAGE
6. setIsolatedItemWidthPercent : Substituted 1 with 2 → NO_COVERAGE
7. setIsolatedItemWidthPercent : Substituted 1 with 0 → NO_COVERAGE
|
fireChangeEvent(true); |
|
175
|
|
} |
|
176
|
|
|
|
177
|
|
/** |
|
178
|
|
* Returns the color source used to determine the color used to highlight |
|
179
|
|
* clipping in the chart elements. If the source is {@code null}, |
|
180
|
|
* then the regular series color is used instead. |
|
181
|
|
* |
|
182
|
|
* @return The color source (possibly {@code null}). |
|
183
|
|
*/ |
|
184
|
|
public CategoryColorSource getClipColorSource() { |
|
185
|
2
1. getClipColorSource : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE
2. getClipColorSource : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return this.clipColorSource; |
|
186
|
|
} |
|
187
|
|
|
|
188
|
|
/** |
|
189
|
|
* Sets the color source that determines the color used to highlight |
|
190
|
|
* clipping in the chart elements, and sends a {@link Renderer3DChangeEvent} |
|
191
|
|
* to all registered listeners. |
|
192
|
|
* |
|
193
|
|
* @param source the source ({@code null} permitted). |
|
194
|
|
*/ |
|
195
|
|
public void setClipColorSource(CategoryColorSource source) { |
|
196
|
1
1. setClipColorSource : Removed assignment to member variable clipColorSource → KILLED
|
this.clipColorSource = source; |
|
197
|
7
1. setClipColorSource : Substituted 1 with 0 → SURVIVED
2. setClipColorSource : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED
3. setClipColorSource : Substituted 1 with 0 → SURVIVED
4. setClipColorSource : Substituted 1 with -1 → SURVIVED
5. setClipColorSource : Substituted 1 with -1 → SURVIVED
6. setClipColorSource : Substituted 1 with 2 → SURVIVED
7. setClipColorSource : Substituted 1 with 0 → SURVIVED
|
fireChangeEvent(true); |
|
198
|
|
} |
|
199
|
|
|
|
200
|
|
/** |
|
201
|
|
* Constructs and places one item from the specified dataset into the given |
|
202
|
|
* world. This method will be called by the {@link CategoryPlot3D} class |
|
203
|
|
* while iterating over the items in the dataset. |
|
204
|
|
* |
|
205
|
|
* @param dataset the dataset ({@code null} not permitted). |
|
206
|
|
* @param series the series index. |
|
207
|
|
* @param row the row index. |
|
208
|
|
* @param column the column index. |
|
209
|
|
* @param world the world ({@code null} not permitted). |
|
210
|
|
* @param dimensions the plot dimensions ({@code null} not permitted). |
|
211
|
|
* @param xOffset the x-offset. |
|
212
|
|
* @param yOffset the y-offset. |
|
213
|
|
* @param zOffset the z-offset. |
|
214
|
|
*/ |
|
215
|
|
@Override |
|
216
|
|
@SuppressWarnings("unchecked") |
|
217
|
|
public void composeItem(CategoryDataset3D dataset, int series, int row, |
|
218
|
|
int column, World world, Dimension3D dimensions, |
|
219
|
|
double xOffset, double yOffset, double zOffset) { |
|
220
|
|
|
|
221
|
|
// there is a lot of brute force code underneath this compose method |
|
222
|
|
// because I haven't seen the pattern yet that will let me reduce it |
|
223
|
|
// to something more elegant...probably I'm not smart enough. |
|
224
|
16
1. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE
2. composeItem : Negated integer local variable number 2 → NO_COVERAGE
3. composeItem : Negated integer local variable number 3 → NO_COVERAGE
4. composeItem : Negated integer local variable number 4 → NO_COVERAGE
5. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
6. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
7. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
8. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
9. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
10. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
11. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
13. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
14. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
15. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
16. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Number y = (Number) dataset.getValue(series, row, column); |
|
225
|
|
Number yprev = null; |
|
226
|
14
1. composeItem : changed conditional boundary → NO_COVERAGE
2. composeItem : negated conditional → NO_COVERAGE
3. composeItem : removed conditional - replaced comparison check with false → NO_COVERAGE
4. composeItem : removed conditional - replaced comparison check with true → NO_COVERAGE
5. composeItem : Negated integer local variable number 4 → NO_COVERAGE
6. composeItem : Less or equal to less than → NO_COVERAGE
7. composeItem : Less or equal to greater than → NO_COVERAGE
8. composeItem : Less or equal to greater or equal → NO_COVERAGE
9. composeItem : Less or equal to equal → NO_COVERAGE
10. composeItem : Less or equal to not equal → NO_COVERAGE
11. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
12. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
13. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
14. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
if (column > 0) { |
|
227
|
28
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE
4. composeItem : Negated integer local variable number 2 → NO_COVERAGE
5. composeItem : Negated integer local variable number 3 → NO_COVERAGE
6. composeItem : Negated integer local variable number 4 → NO_COVERAGE
7. composeItem : Replaced integer operation by second member → NO_COVERAGE
8. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
9. composeItem : Replaced integer subtraction with multiplication → NO_COVERAGE
10. composeItem : Replaced integer subtraction with division → NO_COVERAGE
11. composeItem : Replaced integer subtraction with modulus → NO_COVERAGE
12. composeItem : Substituted 1 with 0 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 1 with 2 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
18. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
19. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
20. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
21. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
22. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
23. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
24. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
25. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
26. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
27. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
28. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
yprev = (Number) dataset.getValue(series, row, column - 1); |
|
228
|
|
} |
|
229
|
|
Number ynext = null; |
|
230
|
27
1. composeItem : changed conditional boundary → NO_COVERAGE
2. composeItem : Substituted 1 with 0 → NO_COVERAGE
3. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE
6. composeItem : removed conditional - replaced comparison check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced comparison check with true → NO_COVERAGE
8. composeItem : Negated integer local variable number 4 → NO_COVERAGE
9. composeItem : Replaced integer operation by second member → NO_COVERAGE
10. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
11. composeItem : Replaced integer subtraction with multiplication → NO_COVERAGE
12. composeItem : Replaced integer subtraction with division → NO_COVERAGE
13. composeItem : Replaced integer subtraction with modulus → NO_COVERAGE
14. composeItem : Substituted 1 with 0 → NO_COVERAGE
15. composeItem : Substituted 1 with -1 → NO_COVERAGE
16. composeItem : Substituted 1 with -1 → NO_COVERAGE
17. composeItem : Substituted 1 with 2 → NO_COVERAGE
18. composeItem : Substituted 1 with 0 → NO_COVERAGE
19. composeItem : greater or equal to less than → NO_COVERAGE
20. composeItem : greater or equal to less or equal → NO_COVERAGE
21. composeItem : greater or equal to greater than → NO_COVERAGE
22. composeItem : greater or equal to equal → NO_COVERAGE
23. composeItem : greater or equal to not equal → NO_COVERAGE
24. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
25. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
26. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
27. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
if (column < dataset.getColumnCount() - 1) { |
|
231
|
28
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Replaced integer addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE
4. composeItem : Negated integer local variable number 2 → NO_COVERAGE
5. composeItem : Negated integer local variable number 3 → NO_COVERAGE
6. composeItem : Negated integer local variable number 4 → NO_COVERAGE
7. composeItem : Replaced integer operation by second member → NO_COVERAGE
8. composeItem : Replaced integer addition with subtraction → NO_COVERAGE
9. composeItem : Replaced integer addition with multiplication → NO_COVERAGE
10. composeItem : Replaced integer addition with division → NO_COVERAGE
11. composeItem : Replaced integer addition with modulus → NO_COVERAGE
12. composeItem : Substituted 1 with 0 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 1 with 2 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
18. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
19. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
20. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
21. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
22. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
23. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
24. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
25. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
26. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
27. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
28. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
ynext = (Number) dataset.getValue(series, row, column + 1); |
|
232
|
|
} |
|
233
|
|
|
|
234
|
1
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getPlot → NO_COVERAGE
|
CategoryPlot3D plot = getPlot(); |
|
235
|
1
1. composeItem : removed call to org/jfree/chart3d/plot/CategoryPlot3D::getRowAxis → NO_COVERAGE
|
CategoryAxis3D rowAxis = plot.getRowAxis(); |
|
236
|
1
1. composeItem : removed call to org/jfree/chart3d/plot/CategoryPlot3D::getColumnAxis → NO_COVERAGE
|
CategoryAxis3D columnAxis = plot.getColumnAxis(); |
|
237
|
1
1. composeItem : removed call to org/jfree/chart3d/plot/CategoryPlot3D::getValueAxis → NO_COVERAGE
|
ValueAxis3D valueAxis = plot.getValueAxis(); |
|
238
|
1
1. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::getRange → NO_COVERAGE
|
Range r = valueAxis.getRange(); |
|
239
|
|
|
|
240
|
6
1. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getSeriesKey → NO_COVERAGE
2. composeItem : Negated integer local variable number 2 → NO_COVERAGE
3. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
4. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
5. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
6. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
|
Comparable<?> seriesKey = dataset.getSeriesKey(series); |
|
241
|
6
1. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getRowKey → NO_COVERAGE
2. composeItem : Negated integer local variable number 3 → NO_COVERAGE
3. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
4. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
5. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
6. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
|
Comparable<?> rowKey = dataset.getRowKey(row); |
|
242
|
6
1. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE
2. composeItem : Negated integer local variable number 4 → NO_COVERAGE
3. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
4. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
5. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
6. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Comparable<?> columnKey = dataset.getColumnKey(column); |
|
243
|
1
1. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
double rowValue = rowAxis.getCategoryValue(rowKey); |
|
244
|
1
1. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
double columnValue = columnAxis.getCategoryValue(columnKey); |
|
245
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Dimension3D::getWidth → NO_COVERAGE
|
double ww = dimensions.getWidth(); |
|
246
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Dimension3D::getHeight → NO_COVERAGE
|
double hh = dimensions.getHeight(); |
|
247
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Dimension3D::getDepth → NO_COVERAGE
|
double dd = dimensions.getDepth(); |
|
248
|
|
|
|
249
|
|
// for any data value, we'll try to create two line segments, one to |
|
250
|
|
// the left of the value and one to the right of the value (each |
|
251
|
|
// halfway to the adjacent data value). If the adjacent data values |
|
252
|
|
// are null (or don't exist, as in the case of the first and last data |
|
253
|
|
// items, then we can create an isolated segment to represent the data |
|
254
|
|
// item. The final consideration is whether the opening and closing |
|
255
|
|
// faces of each segment are filled or not (if the segment connects to |
|
256
|
|
// another segment, there is no need to fill the end face) |
|
257
|
|
boolean createLeftSegment, createRightSegment, createIsolatedSegment; |
|
258
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
boolean leftOpen = false; |
|
259
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
boolean leftClose = false; |
|
260
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
boolean rightOpen = false; |
|
261
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
boolean rightClose = false; |
|
262
|
13
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : Negated integer local variable number 4 → NO_COVERAGE
5. composeItem : not equal to less than → NO_COVERAGE
6. composeItem : not equal to less or equal → NO_COVERAGE
7. composeItem : not equal to greater than → NO_COVERAGE
8. composeItem : not equal to greater or equal → NO_COVERAGE
9. composeItem : not equal to equal → NO_COVERAGE
10. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
13. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
if (column == 0) { // first column is a special case |
|
263
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
createLeftSegment = false; // never for first item |
|
264
|
15
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : negated conditional → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE
4. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
6. composeItem : Substituted 1 with 0 → NO_COVERAGE
7. composeItem : Substituted 1 with -1 → NO_COVERAGE
8. composeItem : Substituted 1 with -1 → NO_COVERAGE
9. composeItem : Substituted 1 with 2 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : not equal to less than → NO_COVERAGE
12. composeItem : not equal to less or equal → NO_COVERAGE
13. composeItem : not equal to greater than → NO_COVERAGE
14. composeItem : not equal to greater or equal → NO_COVERAGE
15. composeItem : not equal to equal → NO_COVERAGE
|
if (dataset.getColumnCount() == 1) { |
|
265
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
createRightSegment = false; |
|
266
|
15
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
6. composeItem : Substituted 0 with 1 → NO_COVERAGE
7. composeItem : Substituted 1 with 0 → NO_COVERAGE
8. composeItem : Substituted 1 with -1 → NO_COVERAGE
9. composeItem : Substituted 0 with -1 → NO_COVERAGE
10. composeItem : Substituted 1 with -1 → NO_COVERAGE
11. composeItem : Substituted 1 with 2 → NO_COVERAGE
12. composeItem : Substituted 0 with 1 → NO_COVERAGE
13. composeItem : Substituted 1 with 0 → NO_COVERAGE
14. composeItem : Substituted 0 with -1 → NO_COVERAGE
15. composeItem : equal to not equal → NO_COVERAGE
|
createIsolatedSegment = (y != null); |
|
267
|
|
} else { |
|
268
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : equal to not equal → NO_COVERAGE
|
createRightSegment = (y != null && ynext != null); |
|
269
|
6
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 1 with 0 → NO_COVERAGE
3. composeItem : Substituted 1 with -1 → NO_COVERAGE
4. composeItem : Substituted 1 with -1 → NO_COVERAGE
5. composeItem : Substituted 1 with 2 → NO_COVERAGE
6. composeItem : Substituted 1 with 0 → NO_COVERAGE
|
rightOpen = true; |
|
270
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
rightClose = false; |
|
271
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : not equal to equal → NO_COVERAGE
|
createIsolatedSegment = (y != null && ynext == null); |
|
272
|
|
} |
|
273
|
26
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
7. composeItem : Negated integer local variable number 4 → NO_COVERAGE
8. composeItem : Replaced integer operation by second member → NO_COVERAGE
9. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
10. composeItem : Replaced integer subtraction with multiplication → NO_COVERAGE
11. composeItem : Replaced integer subtraction with division → NO_COVERAGE
12. composeItem : Replaced integer subtraction with modulus → NO_COVERAGE
13. composeItem : Substituted 1 with 0 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 1 with -1 → NO_COVERAGE
16. composeItem : Substituted 1 with 2 → NO_COVERAGE
17. composeItem : Substituted 1 with 0 → NO_COVERAGE
18. composeItem : not equal to less than → NO_COVERAGE
19. composeItem : not equal to less or equal → NO_COVERAGE
20. composeItem : not equal to greater than → NO_COVERAGE
21. composeItem : not equal to greater or equal → NO_COVERAGE
22. composeItem : not equal to equal → NO_COVERAGE
23. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
24. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
25. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
26. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
} else if (column == dataset.getColumnCount() - 1) { // last column |
|
274
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
createRightSegment = false; // never for the last item |
|
275
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : equal to not equal → NO_COVERAGE
|
createLeftSegment = (y != null && yprev != null); |
|
276
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
leftOpen = false; |
|
277
|
6
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 1 with 0 → NO_COVERAGE
3. composeItem : Substituted 1 with -1 → NO_COVERAGE
4. composeItem : Substituted 1 with -1 → NO_COVERAGE
5. composeItem : Substituted 1 with 2 → NO_COVERAGE
6. composeItem : Substituted 1 with 0 → NO_COVERAGE
|
leftClose = true; |
|
278
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : not equal to equal → NO_COVERAGE
|
createIsolatedSegment = (y != null && yprev == null); |
|
279
|
|
} else { // this is the general case |
|
280
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : equal to not equal → NO_COVERAGE
|
createLeftSegment = (y != null && yprev != null); |
|
281
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
leftOpen = false; |
|
282
|
28
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Negated integer local variable number 38 → NO_COVERAGE
10. composeItem : Substituted 0 with 1 → NO_COVERAGE
11. composeItem : Substituted 1 with 0 → NO_COVERAGE
12. composeItem : Substituted 1 with -1 → NO_COVERAGE
13. composeItem : Substituted 0 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 1 with 2 → NO_COVERAGE
16. composeItem : Substituted 0 with 1 → NO_COVERAGE
17. composeItem : Substituted 1 with 0 → NO_COVERAGE
18. composeItem : Substituted 0 with -1 → NO_COVERAGE
19. composeItem : equal to less than → NO_COVERAGE
20. composeItem : equal to less or equal → NO_COVERAGE
21. composeItem : equal to greater than → NO_COVERAGE
22. composeItem : equal to greater or equal → NO_COVERAGE
23. composeItem : equal to not equal → NO_COVERAGE
24. composeItem : not equal to equal → NO_COVERAGE
25. composeItem : Incremented (a++) integer local variable number 38 → NO_COVERAGE
26. composeItem : Decremented (a--) integer local variable number 38 → NO_COVERAGE
27. composeItem : Incremented (++a) integer local variable number 38 → NO_COVERAGE
28. composeItem : Decremented (--a) integer local variable number 34 → NO_COVERAGE
|
leftClose = (createLeftSegment && ynext == null); |
|
283
|
19
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Substituted 0 with 1 → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 0 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with 2 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 1 with 0 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : equal to not equal → NO_COVERAGE
19. composeItem : equal to not equal → NO_COVERAGE
|
createRightSegment = (y != null && ynext != null); |
|
284
|
28
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
9. composeItem : Negated integer local variable number 39 → NO_COVERAGE
10. composeItem : Substituted 0 with 1 → NO_COVERAGE
11. composeItem : Substituted 1 with 0 → NO_COVERAGE
12. composeItem : Substituted 1 with -1 → NO_COVERAGE
13. composeItem : Substituted 0 with -1 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 1 with 2 → NO_COVERAGE
16. composeItem : Substituted 0 with 1 → NO_COVERAGE
17. composeItem : Substituted 1 with 0 → NO_COVERAGE
18. composeItem : Substituted 0 with -1 → NO_COVERAGE
19. composeItem : equal to less than → NO_COVERAGE
20. composeItem : equal to less or equal → NO_COVERAGE
21. composeItem : equal to greater than → NO_COVERAGE
22. composeItem : equal to greater or equal → NO_COVERAGE
23. composeItem : equal to not equal → NO_COVERAGE
24. composeItem : not equal to equal → NO_COVERAGE
25. composeItem : Incremented (a++) integer local variable number 39 → NO_COVERAGE
26. composeItem : Decremented (a--) integer local variable number 39 → NO_COVERAGE
27. composeItem : Incremented (++a) integer local variable number 39 → NO_COVERAGE
28. composeItem : Decremented (--a) integer local variable number 35 → NO_COVERAGE
|
rightOpen = (createRightSegment && yprev == null); |
|
285
|
5
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Substituted 0 with -1 → NO_COVERAGE
4. composeItem : Substituted 0 with 1 → NO_COVERAGE
5. composeItem : Substituted 0 with -1 → NO_COVERAGE
|
rightClose = false; |
|
286
|
23
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : negated conditional → NO_COVERAGE
6. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
7. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
8. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
9. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
10. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
11. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
12. composeItem : Substituted 0 with 1 → NO_COVERAGE
13. composeItem : Substituted 1 with 0 → NO_COVERAGE
14. composeItem : Substituted 1 with -1 → NO_COVERAGE
15. composeItem : Substituted 0 with -1 → NO_COVERAGE
16. composeItem : Substituted 1 with -1 → NO_COVERAGE
17. composeItem : Substituted 1 with 2 → NO_COVERAGE
18. composeItem : Substituted 0 with 1 → NO_COVERAGE
19. composeItem : Substituted 1 with 0 → NO_COVERAGE
20. composeItem : Substituted 0 with -1 → NO_COVERAGE
21. composeItem : equal to not equal → NO_COVERAGE
22. composeItem : not equal to equal → NO_COVERAGE
23. composeItem : not equal to equal → NO_COVERAGE
|
createIsolatedSegment = (y != null |
|
287
|
|
&& yprev == null && ynext == null); |
|
288
|
|
} |
|
289
|
|
|
|
290
|
|
// now that we know what we have to create, we'll need some info |
|
291
|
|
// for the construction |
|
292
|
23
1. composeItem : replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE
4. composeItem : Negated double local variable number 26 → NO_COVERAGE
5. composeItem : Negated double local variable number 28 → NO_COVERAGE
6. composeItem : Negated double local variable number 7 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 26 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 28 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 7 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 26 → NO_COVERAGE
16. composeItem : Decremented (a--) double local variable number 28 → NO_COVERAGE
17. composeItem : Decremented (a--) double local variable number 7 → NO_COVERAGE
18. composeItem : Incremented (++a) double local variable number 26 → NO_COVERAGE
19. composeItem : Incremented (++a) double local variable number 28 → NO_COVERAGE
20. composeItem : Incremented (++a) double local variable number 7 → NO_COVERAGE
21. composeItem : Decremented (--a) double local variable number 26 → NO_COVERAGE
22. composeItem : Decremented (--a) double local variable number 28 → NO_COVERAGE
23. composeItem : Decremented (--a) double local variable number 7 → NO_COVERAGE
|
double xw = columnAxis.translateToWorld(columnValue, ww) + xOffset; |
|
293
|
5
1. composeItem : Substituted NaN with 1.0 → NO_COVERAGE
2. composeItem : Substituted NaN with 1.0 → NO_COVERAGE
3. composeItem : Substituted NaN with 0.0 → NO_COVERAGE
4. composeItem : Substituted NaN with -1.0 → NO_COVERAGE
5. composeItem : Substituted NaN with NaN → NO_COVERAGE
|
double yw = Double.NaN; |
|
294
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (y != null) { |
|
295
|
19
1. composeItem : replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to java/lang/Number::doubleValue → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE
5. composeItem : Negated double local variable number 30 → NO_COVERAGE
6. composeItem : Negated double local variable number 9 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 30 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 9 → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 30 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 9 → NO_COVERAGE
16. composeItem : Incremented (++a) double local variable number 30 → NO_COVERAGE
17. composeItem : Incremented (++a) double local variable number 9 → NO_COVERAGE
18. composeItem : Decremented (--a) double local variable number 30 → NO_COVERAGE
19. composeItem : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
yw = valueAxis.translateToWorld(y.doubleValue(), hh) + yOffset; |
|
296
|
|
} |
|
297
|
23
1. composeItem : replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE
4. composeItem : Negated double local variable number 24 → NO_COVERAGE
5. composeItem : Negated double local variable number 32 → NO_COVERAGE
6. composeItem : Negated double local variable number 11 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 24 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 32 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 11 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 24 → NO_COVERAGE
16. composeItem : Decremented (a--) double local variable number 32 → NO_COVERAGE
17. composeItem : Decremented (a--) double local variable number 11 → NO_COVERAGE
18. composeItem : Incremented (++a) double local variable number 24 → NO_COVERAGE
19. composeItem : Incremented (++a) double local variable number 32 → NO_COVERAGE
20. composeItem : Incremented (++a) double local variable number 11 → NO_COVERAGE
21. composeItem : Decremented (--a) double local variable number 24 → NO_COVERAGE
22. composeItem : Decremented (--a) double local variable number 32 → NO_COVERAGE
23. composeItem : Decremented (--a) double local variable number 11 → NO_COVERAGE
|
double zw = rowAxis.translateToWorld(rowValue, dd) + zOffset; |
|
298
|
19
1. composeItem : replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/Range::getMin → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE
5. composeItem : Negated double local variable number 30 → NO_COVERAGE
6. composeItem : Negated double local variable number 9 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 30 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 9 → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 30 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 9 → NO_COVERAGE
16. composeItem : Incremented (++a) double local variable number 30 → NO_COVERAGE
17. composeItem : Incremented (++a) double local variable number 9 → NO_COVERAGE
18. composeItem : Decremented (--a) double local variable number 30 → NO_COVERAGE
19. composeItem : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
double ywmin = valueAxis.translateToWorld(r.getMin(), hh) + yOffset; |
|
299
|
19
1. composeItem : replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/Range::getMax → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE
5. composeItem : Negated double local variable number 30 → NO_COVERAGE
6. composeItem : Negated double local variable number 9 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 30 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 9 → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 30 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 9 → NO_COVERAGE
16. composeItem : Incremented (++a) double local variable number 30 → NO_COVERAGE
17. composeItem : Incremented (++a) double local variable number 9 → NO_COVERAGE
18. composeItem : Decremented (--a) double local variable number 30 → NO_COVERAGE
19. composeItem : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
double ywmax = valueAxis.translateToWorld(r.getMax(), hh) + yOffset; |
|
300
|
17
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getColorSource → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/CategoryColorSource::getColor → NO_COVERAGE
3. composeItem : Negated integer local variable number 2 → NO_COVERAGE
4. composeItem : Negated integer local variable number 3 → NO_COVERAGE
5. composeItem : Negated integer local variable number 4 → NO_COVERAGE
6. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
7. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
8. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
9. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
10. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
13. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
14. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
15. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
16. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
17. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Color color = getColorSource().getColor(series, row, column); |
|
301
|
|
Color clipColor = color; |
|
302
|
5
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
4. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
5. composeItem : equal to not equal → NO_COVERAGE
|
if (getClipColorSource() != null) { |
|
303
|
17
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/CategoryColorSource::getColor → NO_COVERAGE
3. composeItem : Negated integer local variable number 2 → NO_COVERAGE
4. composeItem : Negated integer local variable number 3 → NO_COVERAGE
5. composeItem : Negated integer local variable number 4 → NO_COVERAGE
6. composeItem : Incremented (a++) integer local variable number 2 → NO_COVERAGE
7. composeItem : Incremented (a++) integer local variable number 3 → NO_COVERAGE
8. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
9. composeItem : Decremented (a--) integer local variable number 2 → NO_COVERAGE
10. composeItem : Decremented (a--) integer local variable number 3 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 2 → NO_COVERAGE
13. composeItem : Incremented (++a) integer local variable number 3 → NO_COVERAGE
14. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
15. composeItem : Decremented (--a) integer local variable number 2 → NO_COVERAGE
16. composeItem : Decremented (--a) integer local variable number 3 → NO_COVERAGE
17. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Color c = getClipColorSource().getColor(series, row, column); |
|
304
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (c != null) { |
|
305
|
|
clipColor = c; |
|
306
|
|
} |
|
307
|
|
} |
|
308
|
1
1. composeItem : removed call to org/jfree/chart3d/data/KeyedValues3DItemKey::<init> → NO_COVERAGE
|
KeyedValues3DItemKey itemKey = new KeyedValues3DItemKey(seriesKey, |
|
309
|
|
rowKey, columnKey); |
|
310
|
13
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : Negated integer local variable number 38 → NO_COVERAGE
5. composeItem : equal to less than → NO_COVERAGE
6. composeItem : equal to less or equal → NO_COVERAGE
7. composeItem : equal to greater than → NO_COVERAGE
8. composeItem : equal to greater or equal → NO_COVERAGE
9. composeItem : equal to not equal → NO_COVERAGE
10. composeItem : Incremented (a++) integer local variable number 38 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 38 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 38 → NO_COVERAGE
13. composeItem : Decremented (--a) integer local variable number 34 → NO_COVERAGE
|
if (createLeftSegment) { |
|
311
|
18
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE
4. composeItem : Negated integer local variable number 4 → NO_COVERAGE
5. composeItem : Replaced integer operation by second member → NO_COVERAGE
6. composeItem : Replaced integer subtraction with addition → NO_COVERAGE
7. composeItem : Replaced integer subtraction with multiplication → NO_COVERAGE
8. composeItem : Replaced integer subtraction with division → NO_COVERAGE
9. composeItem : Replaced integer subtraction with modulus → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 1 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with 2 → NO_COVERAGE
14. composeItem : Substituted 1 with 0 → NO_COVERAGE
15. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
16. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
17. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
18. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Comparable<?> prevColumnKey = dataset.getColumnKey(column - 1); |
|
312
|
1
1. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
double prevColumnValue = columnAxis.getCategoryValue(prevColumnKey); |
|
313
|
23
1. composeItem : replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE
4. composeItem : Negated double local variable number 55 → NO_COVERAGE
5. composeItem : Negated double local variable number 28 → NO_COVERAGE
6. composeItem : Negated double local variable number 7 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 55 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 28 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 7 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 55 → NO_COVERAGE
16. composeItem : Decremented (a--) double local variable number 28 → NO_COVERAGE
17. composeItem : Decremented (a--) double local variable number 7 → NO_COVERAGE
18. composeItem : Incremented (++a) double local variable number 55 → NO_COVERAGE
19. composeItem : Incremented (++a) double local variable number 28 → NO_COVERAGE
20. composeItem : Incremented (++a) double local variable number 7 → NO_COVERAGE
21. composeItem : Decremented (--a) double local variable number 55 → NO_COVERAGE
22. composeItem : Decremented (--a) double local variable number 28 → NO_COVERAGE
23. composeItem : Decremented (--a) double local variable number 7 → NO_COVERAGE
|
double prevColumnX = columnAxis.translateToWorld(prevColumnValue, |
|
314
|
|
ww) + xOffset; |
|
315
|
29
1. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : Replaced double division with multiplication → NO_COVERAGE
4. composeItem : Negated double local variable number 57 → NO_COVERAGE
5. composeItem : Negated double local variable number 41 → NO_COVERAGE
6. composeItem : Replaced double operation by second member → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double division with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with multiplication → NO_COVERAGE
11. composeItem : Replaced double division with modulus → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double division with addition → NO_COVERAGE
14. composeItem : Replaced double addition with modulus → NO_COVERAGE
15. composeItem : Replaced double division with subtraction → NO_COVERAGE
16. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
17. composeItem : Substituted 2.0 with 0.0 → NO_COVERAGE
18. composeItem : Substituted 2.0 with -1.0 → NO_COVERAGE
19. composeItem : Substituted 2.0 with -2.0 → NO_COVERAGE
20. composeItem : Substituted 2.0 with 3.0 → NO_COVERAGE
21. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
22. composeItem : Incremented (a++) double local variable number 57 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 57 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
26. composeItem : Incremented (++a) double local variable number 57 → NO_COVERAGE
27. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
28. composeItem : Decremented (--a) double local variable number 57 → NO_COVERAGE
29. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
|
double xl = (prevColumnX + xw) / 2.0; |
|
316
|
19
1. composeItem : replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to java/lang/Number::doubleValue → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE
5. composeItem : Negated double local variable number 30 → NO_COVERAGE
6. composeItem : Negated double local variable number 9 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 30 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 9 → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 30 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 9 → NO_COVERAGE
16. composeItem : Incremented (++a) double local variable number 30 → NO_COVERAGE
17. composeItem : Incremented (++a) double local variable number 9 → NO_COVERAGE
18. composeItem : Decremented (--a) double local variable number 30 → NO_COVERAGE
19. composeItem : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
double yprevw = valueAxis.translateToWorld(yprev.doubleValue(), hh) |
|
317
|
|
+ yOffset; |
|
318
|
29
1. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : Replaced double division with multiplication → NO_COVERAGE
4. composeItem : Negated double local variable number 61 → NO_COVERAGE
5. composeItem : Negated double local variable number 43 → NO_COVERAGE
6. composeItem : Replaced double operation by second member → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double division with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with multiplication → NO_COVERAGE
11. composeItem : Replaced double division with modulus → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double division with addition → NO_COVERAGE
14. composeItem : Replaced double addition with modulus → NO_COVERAGE
15. composeItem : Replaced double division with subtraction → NO_COVERAGE
16. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
17. composeItem : Substituted 2.0 with 0.0 → NO_COVERAGE
18. composeItem : Substituted 2.0 with -1.0 → NO_COVERAGE
19. composeItem : Substituted 2.0 with -2.0 → NO_COVERAGE
20. composeItem : Substituted 2.0 with 3.0 → NO_COVERAGE
21. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
22. composeItem : Incremented (a++) double local variable number 61 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 61 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
26. composeItem : Incremented (++a) double local variable number 61 → NO_COVERAGE
27. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
28. composeItem : Decremented (--a) double local variable number 61 → NO_COVERAGE
29. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
|
double yl = (yprevw + yw) / 2.0; |
|
319
|
56
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE
2. composeItem : Negated double local variable number 59 → NO_COVERAGE
3. composeItem : Negated double local variable number 63 → NO_COVERAGE
4. composeItem : Negated double local variable number 41 → NO_COVERAGE
5. composeItem : Negated double local variable number 43 → NO_COVERAGE
6. composeItem : Negated double local variable number 45 → NO_COVERAGE
7. composeItem : Negated double field lineWidth → NO_COVERAGE
8. composeItem : Negated double field lineHeight → NO_COVERAGE
9. composeItem : Negated double local variable number 47 → NO_COVERAGE
10. composeItem : Negated double local variable number 49 → NO_COVERAGE
11. composeItem : Negated integer local variable number 34 → NO_COVERAGE
12. composeItem : Negated integer local variable number 35 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 59 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 63 → NO_COVERAGE
15. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
16. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
17. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
18. composeItem : Incremented (a++) double field lineWidth → NO_COVERAGE
19. composeItem : Incremented (a++) double field lineHeight → NO_COVERAGE
20. composeItem : Incremented (a++) double local variable number 47 → NO_COVERAGE
21. composeItem : Incremented (a++) double local variable number 49 → NO_COVERAGE
22. composeItem : Incremented (a++) integer local variable number 34 → NO_COVERAGE
23. composeItem : Incremented (a++) integer local variable number 35 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 59 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 63 → NO_COVERAGE
26. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
27. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
28. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
29. composeItem : Decremented (a--) double field lineWidth → NO_COVERAGE
30. composeItem : Decremented (a--) double field lineHeight → NO_COVERAGE
31. composeItem : Decremented (a--) double local variable number 47 → NO_COVERAGE
32. composeItem : Decremented (a--) double local variable number 49 → NO_COVERAGE
33. composeItem : Decremented (a--) integer local variable number 34 → NO_COVERAGE
34. composeItem : Decremented (a--) integer local variable number 35 → NO_COVERAGE
35. composeItem : Incremented (++a) double local variable number 59 → NO_COVERAGE
36. composeItem : Incremented (++a) double local variable number 63 → NO_COVERAGE
37. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
38. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
39. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
40. composeItem : Incremented (++a) double field lineWidth → NO_COVERAGE
41. composeItem : Incremented (++a) double field lineHeight → NO_COVERAGE
42. composeItem : Incremented (++a) double local variable number 47 → NO_COVERAGE
43. composeItem : Incremented (++a) double local variable number 49 → NO_COVERAGE
44. composeItem : Incremented (++a) integer local variable number 34 → NO_COVERAGE
45. composeItem : Incremented (++a) integer local variable number 35 → NO_COVERAGE
46. composeItem : Decremented (--a) double local variable number 59 → NO_COVERAGE
47. composeItem : Decremented (--a) double local variable number 63 → NO_COVERAGE
48. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
49. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
50. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
51. composeItem : Decremented (--a) double field → NO_COVERAGE
52. composeItem : Decremented (--a) double field → NO_COVERAGE
53. composeItem : Decremented (--a) double local variable number 47 → NO_COVERAGE
54. composeItem : Decremented (--a) double local variable number 49 → NO_COVERAGE
55. composeItem : Decremented (--a) integer local variable number 37 → NO_COVERAGE
56. composeItem : Decremented (--a) integer local variable number 38 → NO_COVERAGE
|
Object3D left = createSegment(xl, yl, xw, yw, zw, this.lineWidth, |
|
320
|
|
this.lineHeight, ywmin, ywmax, color, clipColor, leftOpen, |
|
321
|
|
leftClose); |
|
322
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (left != null) { |
|
323
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
left.setProperty(Object3D.ITEM_KEY, itemKey); |
|
324
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(left); |
|
325
|
|
} |
|
326
|
|
} |
|
327
|
13
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : Negated integer local variable number 39 → NO_COVERAGE
5. composeItem : equal to less than → NO_COVERAGE
6. composeItem : equal to less or equal → NO_COVERAGE
7. composeItem : equal to greater than → NO_COVERAGE
8. composeItem : equal to greater or equal → NO_COVERAGE
9. composeItem : equal to not equal → NO_COVERAGE
10. composeItem : Incremented (a++) integer local variable number 39 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 39 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 39 → NO_COVERAGE
13. composeItem : Decremented (--a) integer local variable number 35 → NO_COVERAGE
|
if (createRightSegment) { |
|
328
|
18
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Replaced integer addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE
4. composeItem : Negated integer local variable number 4 → NO_COVERAGE
5. composeItem : Replaced integer operation by second member → NO_COVERAGE
6. composeItem : Replaced integer addition with subtraction → NO_COVERAGE
7. composeItem : Replaced integer addition with multiplication → NO_COVERAGE
8. composeItem : Replaced integer addition with division → NO_COVERAGE
9. composeItem : Replaced integer addition with modulus → NO_COVERAGE
10. composeItem : Substituted 1 with 0 → NO_COVERAGE
11. composeItem : Substituted 1 with -1 → NO_COVERAGE
12. composeItem : Substituted 1 with -1 → NO_COVERAGE
13. composeItem : Substituted 1 with 2 → NO_COVERAGE
14. composeItem : Substituted 1 with 0 → NO_COVERAGE
15. composeItem : Incremented (a++) integer local variable number 4 → NO_COVERAGE
16. composeItem : Decremented (a--) integer local variable number 4 → NO_COVERAGE
17. composeItem : Incremented (++a) integer local variable number 4 → NO_COVERAGE
18. composeItem : Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
Comparable<?> nextColumnKey = dataset.getColumnKey(column + 1); |
|
329
|
1
1. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
double nextColumnValue = columnAxis.getCategoryValue(nextColumnKey); |
|
330
|
23
1. composeItem : replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE
4. composeItem : Negated double local variable number 55 → NO_COVERAGE
5. composeItem : Negated double local variable number 28 → NO_COVERAGE
6. composeItem : Negated double local variable number 7 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 55 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 28 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 7 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 55 → NO_COVERAGE
16. composeItem : Decremented (a--) double local variable number 28 → NO_COVERAGE
17. composeItem : Decremented (a--) double local variable number 7 → NO_COVERAGE
18. composeItem : Incremented (++a) double local variable number 55 → NO_COVERAGE
19. composeItem : Incremented (++a) double local variable number 28 → NO_COVERAGE
20. composeItem : Incremented (++a) double local variable number 7 → NO_COVERAGE
21. composeItem : Decremented (--a) double local variable number 55 → NO_COVERAGE
22. composeItem : Decremented (--a) double local variable number 28 → NO_COVERAGE
23. composeItem : Decremented (--a) double local variable number 7 → NO_COVERAGE
|
double nextColumnX = columnAxis.translateToWorld(nextColumnValue, |
|
331
|
|
ww) + xOffset; |
|
332
|
29
1. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : Replaced double division with multiplication → NO_COVERAGE
4. composeItem : Negated double local variable number 57 → NO_COVERAGE
5. composeItem : Negated double local variable number 41 → NO_COVERAGE
6. composeItem : Replaced double operation by second member → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double division with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with multiplication → NO_COVERAGE
11. composeItem : Replaced double division with modulus → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double division with addition → NO_COVERAGE
14. composeItem : Replaced double addition with modulus → NO_COVERAGE
15. composeItem : Replaced double division with subtraction → NO_COVERAGE
16. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
17. composeItem : Substituted 2.0 with 0.0 → NO_COVERAGE
18. composeItem : Substituted 2.0 with -1.0 → NO_COVERAGE
19. composeItem : Substituted 2.0 with -2.0 → NO_COVERAGE
20. composeItem : Substituted 2.0 with 3.0 → NO_COVERAGE
21. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
22. composeItem : Incremented (a++) double local variable number 57 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 57 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
26. composeItem : Incremented (++a) double local variable number 57 → NO_COVERAGE
27. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
28. composeItem : Decremented (--a) double local variable number 57 → NO_COVERAGE
29. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
|
double xr = (nextColumnX + xw) / 2.0; |
|
333
|
19
1. composeItem : replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : removed call to java/lang/Number::doubleValue → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE
5. composeItem : Negated double local variable number 30 → NO_COVERAGE
6. composeItem : Negated double local variable number 9 → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double addition with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with division → NO_COVERAGE
11. composeItem : Replaced double addition with modulus → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 30 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 9 → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 30 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 9 → NO_COVERAGE
16. composeItem : Incremented (++a) double local variable number 30 → NO_COVERAGE
17. composeItem : Incremented (++a) double local variable number 9 → NO_COVERAGE
18. composeItem : Decremented (--a) double local variable number 30 → NO_COVERAGE
19. composeItem : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
double ynextw = valueAxis.translateToWorld(ynext.doubleValue(), hh) |
|
334
|
|
+ yOffset; |
|
335
|
29
1. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
2. composeItem : Replaced double addition with subtraction → NO_COVERAGE
3. composeItem : Replaced double division with multiplication → NO_COVERAGE
4. composeItem : Negated double local variable number 61 → NO_COVERAGE
5. composeItem : Negated double local variable number 43 → NO_COVERAGE
6. composeItem : Replaced double operation by second member → NO_COVERAGE
7. composeItem : Replaced double operation by second member → NO_COVERAGE
8. composeItem : Replaced double addition with subtraction → NO_COVERAGE
9. composeItem : Replaced double division with multiplication → NO_COVERAGE
10. composeItem : Replaced double addition with multiplication → NO_COVERAGE
11. composeItem : Replaced double division with modulus → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double division with addition → NO_COVERAGE
14. composeItem : Replaced double addition with modulus → NO_COVERAGE
15. composeItem : Replaced double division with subtraction → NO_COVERAGE
16. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
17. composeItem : Substituted 2.0 with 0.0 → NO_COVERAGE
18. composeItem : Substituted 2.0 with -1.0 → NO_COVERAGE
19. composeItem : Substituted 2.0 with -2.0 → NO_COVERAGE
20. composeItem : Substituted 2.0 with 3.0 → NO_COVERAGE
21. composeItem : Substituted 2.0 with 1.0 → NO_COVERAGE
22. composeItem : Incremented (a++) double local variable number 61 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 61 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
26. composeItem : Incremented (++a) double local variable number 61 → NO_COVERAGE
27. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
28. composeItem : Decremented (--a) double local variable number 61 → NO_COVERAGE
29. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
|
double yr = (ynextw + yw) / 2.0; |
|
336
|
56
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE
2. composeItem : Negated double local variable number 41 → NO_COVERAGE
3. composeItem : Negated double local variable number 43 → NO_COVERAGE
4. composeItem : Negated double local variable number 59 → NO_COVERAGE
5. composeItem : Negated double local variable number 63 → NO_COVERAGE
6. composeItem : Negated double local variable number 45 → NO_COVERAGE
7. composeItem : Negated double field lineWidth → NO_COVERAGE
8. composeItem : Negated double field lineHeight → NO_COVERAGE
9. composeItem : Negated double local variable number 47 → NO_COVERAGE
10. composeItem : Negated double local variable number 49 → NO_COVERAGE
11. composeItem : Negated integer local variable number 36 → NO_COVERAGE
12. composeItem : Negated integer local variable number 37 → NO_COVERAGE
13. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
14. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
15. composeItem : Incremented (a++) double local variable number 59 → NO_COVERAGE
16. composeItem : Incremented (a++) double local variable number 63 → NO_COVERAGE
17. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
18. composeItem : Incremented (a++) double field lineWidth → NO_COVERAGE
19. composeItem : Incremented (a++) double field lineHeight → NO_COVERAGE
20. composeItem : Incremented (a++) double local variable number 47 → NO_COVERAGE
21. composeItem : Incremented (a++) double local variable number 49 → NO_COVERAGE
22. composeItem : Incremented (a++) integer local variable number 36 → NO_COVERAGE
23. composeItem : Incremented (a++) integer local variable number 37 → NO_COVERAGE
24. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
25. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
26. composeItem : Decremented (a--) double local variable number 59 → NO_COVERAGE
27. composeItem : Decremented (a--) double local variable number 63 → NO_COVERAGE
28. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
29. composeItem : Decremented (a--) double field lineWidth → NO_COVERAGE
30. composeItem : Decremented (a--) double field lineHeight → NO_COVERAGE
31. composeItem : Decremented (a--) double local variable number 47 → NO_COVERAGE
32. composeItem : Decremented (a--) double local variable number 49 → NO_COVERAGE
33. composeItem : Decremented (a--) integer local variable number 36 → NO_COVERAGE
34. composeItem : Decremented (a--) integer local variable number 37 → NO_COVERAGE
35. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
36. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
37. composeItem : Incremented (++a) double local variable number 59 → NO_COVERAGE
38. composeItem : Incremented (++a) double local variable number 63 → NO_COVERAGE
39. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
40. composeItem : Incremented (++a) double field lineWidth → NO_COVERAGE
41. composeItem : Incremented (++a) double field lineHeight → NO_COVERAGE
42. composeItem : Incremented (++a) double local variable number 47 → NO_COVERAGE
43. composeItem : Incremented (++a) double local variable number 49 → NO_COVERAGE
44. composeItem : Incremented (++a) integer local variable number 36 → NO_COVERAGE
45. composeItem : Incremented (++a) integer local variable number 37 → NO_COVERAGE
46. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
47. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
48. composeItem : Decremented (--a) double local variable number 59 → NO_COVERAGE
49. composeItem : Decremented (--a) double local variable number 63 → NO_COVERAGE
50. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
51. composeItem : Decremented (--a) double field → NO_COVERAGE
52. composeItem : Decremented (--a) double field → NO_COVERAGE
53. composeItem : Decremented (--a) double local variable number 47 → NO_COVERAGE
54. composeItem : Decremented (--a) double local variable number 49 → NO_COVERAGE
55. composeItem : Decremented (--a) integer local variable number 39 → NO_COVERAGE
56. composeItem : Decremented (--a) integer local variable number 40 → NO_COVERAGE
|
Object3D right = createSegment(xw, yw, xr, yr, zw, this.lineWidth, |
|
337
|
|
this.lineHeight, ywmin, ywmax, color, clipColor, rightOpen, |
|
338
|
|
rightClose); |
|
339
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (right != null) { |
|
340
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
right.setProperty(Object3D.ITEM_KEY, itemKey); |
|
341
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(right); |
|
342
|
|
} |
|
343
|
|
} |
|
344
|
13
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : Negated integer local variable number 40 → NO_COVERAGE
5. composeItem : equal to less than → NO_COVERAGE
6. composeItem : equal to less or equal → NO_COVERAGE
7. composeItem : equal to greater than → NO_COVERAGE
8. composeItem : equal to greater or equal → NO_COVERAGE
9. composeItem : equal to not equal → NO_COVERAGE
10. composeItem : Incremented (a++) integer local variable number 40 → NO_COVERAGE
11. composeItem : Decremented (a--) integer local variable number 40 → NO_COVERAGE
12. composeItem : Incremented (++a) integer local variable number 40 → NO_COVERAGE
13. composeItem : Decremented (--a) integer local variable number 36 → NO_COVERAGE
|
if (createIsolatedSegment) { |
|
345
|
12
1. composeItem : Replaced double multiplication with division → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryWidth → NO_COVERAGE
3. composeItem : Negated double field isolatedItemWidthPercent → NO_COVERAGE
4. composeItem : Replaced double operation by second member → NO_COVERAGE
5. composeItem : Replaced double multiplication with division → NO_COVERAGE
6. composeItem : Replaced double multiplication with modulus → NO_COVERAGE
7. composeItem : Replaced double multiplication with addition → NO_COVERAGE
8. composeItem : Replaced double multiplication with subtraction → NO_COVERAGE
9. composeItem : Incremented (a++) double field isolatedItemWidthPercent → NO_COVERAGE
10. composeItem : Decremented (a--) double field isolatedItemWidthPercent → NO_COVERAGE
11. composeItem : Incremented (++a) double field isolatedItemWidthPercent → NO_COVERAGE
12. composeItem : Decremented (--a) double field → NO_COVERAGE
|
double cw = columnAxis.getCategoryWidth() |
|
346
|
|
* this.isolatedItemWidthPercent; |
|
347
|
12
1. composeItem : replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE
3. composeItem : Negated double local variable number 66 → NO_COVERAGE
4. composeItem : Negated double local variable number 28 → NO_COVERAGE
5. composeItem : Incremented (a++) double local variable number 66 → NO_COVERAGE
6. composeItem : Incremented (a++) double local variable number 28 → NO_COVERAGE
7. composeItem : Decremented (a--) double local variable number 66 → NO_COVERAGE
8. composeItem : Decremented (a--) double local variable number 28 → NO_COVERAGE
9. composeItem : Incremented (++a) double local variable number 66 → NO_COVERAGE
10. composeItem : Incremented (++a) double local variable number 28 → NO_COVERAGE
11. composeItem : Decremented (--a) double local variable number 54 → NO_COVERAGE
12. composeItem : Decremented (--a) double local variable number 28 → NO_COVERAGE
|
double cww = columnAxis.translateToWorld(cw, ww); |
|
348
|
31
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::createBox → NO_COVERAGE
2. composeItem : Negated double local variable number 41 → NO_COVERAGE
3. composeItem : Negated double local variable number 68 → NO_COVERAGE
4. composeItem : Negated double local variable number 43 → NO_COVERAGE
5. composeItem : Negated double field lineHeight → NO_COVERAGE
6. composeItem : Negated double local variable number 45 → NO_COVERAGE
7. composeItem : Negated double field lineWidth → NO_COVERAGE
8. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
9. composeItem : Incremented (a++) double local variable number 68 → NO_COVERAGE
10. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
11. composeItem : Incremented (a++) double field lineHeight → NO_COVERAGE
12. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
13. composeItem : Incremented (a++) double field lineWidth → NO_COVERAGE
14. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
15. composeItem : Decremented (a--) double local variable number 68 → NO_COVERAGE
16. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
17. composeItem : Decremented (a--) double field lineHeight → NO_COVERAGE
18. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
19. composeItem : Decremented (a--) double field lineWidth → NO_COVERAGE
20. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
21. composeItem : Incremented (++a) double local variable number 68 → NO_COVERAGE
22. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
23. composeItem : Incremented (++a) double field lineHeight → NO_COVERAGE
24. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
25. composeItem : Incremented (++a) double field lineWidth → NO_COVERAGE
26. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
27. composeItem : Decremented (--a) double local variable number 56 → NO_COVERAGE
28. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
29. composeItem : Decremented (--a) double field → NO_COVERAGE
30. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
31. composeItem : Decremented (--a) double field → NO_COVERAGE
|
Object3D isolated = Object3D.createBox(xw, cww, yw, this.lineHeight, |
|
349
|
|
zw, this.lineWidth, color); |
|
350
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (isolated != null) { |
|
351
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
isolated.setProperty(Object3D.ITEM_KEY, itemKey); |
|
352
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(isolated); |
|
353
|
|
} |
|
354
|
|
} |
|
355
|
|
|
|
356
|
57
1. composeItem : changed conditional boundary → NO_COVERAGE
2. composeItem : changed conditional boundary → NO_COVERAGE
3. composeItem : negated conditional → NO_COVERAGE
4. composeItem : negated conditional → NO_COVERAGE
5. composeItem : negated conditional → NO_COVERAGE
6. composeItem : negated conditional → NO_COVERAGE
7. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelGenerator → NO_COVERAGE
8. composeItem : removed call to java/lang/Double::isNaN → NO_COVERAGE
9. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
10. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
11. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
12. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
13. composeItem : removed conditional - replaced comparison check with false → NO_COVERAGE
14. composeItem : removed conditional - replaced comparison check with false → NO_COVERAGE
15. composeItem : removed conditional - replaced comparison check with true → NO_COVERAGE
16. composeItem : removed conditional - replaced comparison check with true → NO_COVERAGE
17. composeItem : Negated double local variable number 43 → NO_COVERAGE
18. composeItem : Negated double local variable number 43 → NO_COVERAGE
19. composeItem : Negated double local variable number 47 → NO_COVERAGE
20. composeItem : Negated double local variable number 43 → NO_COVERAGE
21. composeItem : Negated double local variable number 49 → NO_COVERAGE
22. composeItem : not equal to less than → NO_COVERAGE
23. composeItem : Less than to less or equal → NO_COVERAGE
24. composeItem : greater than to less than → NO_COVERAGE
25. composeItem : not equal to less or equal → NO_COVERAGE
26. composeItem : Less than to greater than → NO_COVERAGE
27. composeItem : greater than to less or equal → NO_COVERAGE
28. composeItem : not equal to greater than → NO_COVERAGE
29. composeItem : Less than to greater or equal → NO_COVERAGE
30. composeItem : greater than to greater or equal → NO_COVERAGE
31. composeItem : not equal to greater or equal → NO_COVERAGE
32. composeItem : Less than to equal → NO_COVERAGE
33. composeItem : greater than to equal → NO_COVERAGE
34. composeItem : equal to not equal → NO_COVERAGE
35. composeItem : not equal to equal → NO_COVERAGE
36. composeItem : Less than to not equal → NO_COVERAGE
37. composeItem : greater than to not equal → NO_COVERAGE
38. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
39. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
40. composeItem : Incremented (a++) double local variable number 47 → NO_COVERAGE
41. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
42. composeItem : Incremented (a++) double local variable number 49 → NO_COVERAGE
43. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
44. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
45. composeItem : Decremented (a--) double local variable number 47 → NO_COVERAGE
46. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
47. composeItem : Decremented (a--) double local variable number 49 → NO_COVERAGE
48. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
49. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
50. composeItem : Incremented (++a) double local variable number 47 → NO_COVERAGE
51. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
52. composeItem : Incremented (++a) double local variable number 49 → NO_COVERAGE
53. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
54. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
55. composeItem : Decremented (--a) double local variable number 47 → NO_COVERAGE
56. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
57. composeItem : Decremented (--a) double local variable number 49 → NO_COVERAGE
|
if (getItemLabelGenerator() != null && !Double.isNaN(yw) |
|
357
|
|
&& yw >= ywmin && yw <= ywmax) { |
|
358
|
2
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelGenerator → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/label/CategoryItemLabelGenerator::generateItemLabel → NO_COVERAGE
|
String label = getItemLabelGenerator().generateItemLabel(dataset, |
|
359
|
|
seriesKey, rowKey, columnKey); |
|
360
|
4
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
4. composeItem : equal to not equal → NO_COVERAGE
|
if (label != null) { |
|
361
|
1
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelPositioning → NO_COVERAGE
|
ItemLabelPositioning positioning = getItemLabelPositioning(); |
|
362
|
1
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelOffsets → NO_COVERAGE
|
Offset3D offsets = getItemLabelOffsets(); |
|
363
|
8
1. composeItem : Replaced double multiplication with division → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/graphics3d/Offset3D::getDY → NO_COVERAGE
3. composeItem : removed call to org/jfree/chart3d/graphics3d/Dimension3D::getHeight → NO_COVERAGE
4. composeItem : Replaced double operation by second member → NO_COVERAGE
5. composeItem : Replaced double multiplication with division → NO_COVERAGE
6. composeItem : Replaced double multiplication with modulus → NO_COVERAGE
7. composeItem : Replaced double multiplication with addition → NO_COVERAGE
8. composeItem : Replaced double multiplication with subtraction → NO_COVERAGE
|
double dy = offsets.getDY() * dimensions.getHeight(); |
|
364
|
9
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/label/ItemLabelPositioning::equals → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
4. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
5. composeItem : equal to less than → NO_COVERAGE
6. composeItem : equal to less or equal → NO_COVERAGE
7. composeItem : equal to greater than → NO_COVERAGE
8. composeItem : equal to greater or equal → NO_COVERAGE
9. composeItem : equal to not equal → NO_COVERAGE
|
if (positioning.equals(ItemLabelPositioning.CENTRAL)) { |
|
365
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
Object3D labelObj = Object3D.createLabelObject(label, |
|
366
|
2
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
getItemLabelFont(), getItemLabelColor(), |
|
367
|
38
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 1 with 0 → NO_COVERAGE
3. composeItem : Replaced double addition with subtraction → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE
5. composeItem : Negated double local variable number 41 → NO_COVERAGE
6. composeItem : Negated double local variable number 43 → NO_COVERAGE
7. composeItem : Negated double local variable number 57 → NO_COVERAGE
8. composeItem : Negated double local variable number 45 → NO_COVERAGE
9. composeItem : Replaced double operation by second member → NO_COVERAGE
10. composeItem : Replaced double addition with subtraction → NO_COVERAGE
11. composeItem : Replaced double addition with multiplication → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double addition with modulus → NO_COVERAGE
14. composeItem : Substituted 0 with 1 → NO_COVERAGE
15. composeItem : Substituted 1 with 0 → NO_COVERAGE
16. composeItem : Substituted 0 with -1 → NO_COVERAGE
17. composeItem : Substituted 1 with -1 → NO_COVERAGE
18. composeItem : Substituted 1 with -1 → NO_COVERAGE
19. composeItem : Substituted 0 with 1 → NO_COVERAGE
20. composeItem : Substituted 1 with 2 → NO_COVERAGE
21. composeItem : Substituted 0 with -1 → NO_COVERAGE
22. composeItem : Substituted 1 with 0 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
24. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
25. composeItem : Incremented (a++) double local variable number 57 → NO_COVERAGE
26. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
27. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
28. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
29. composeItem : Decremented (a--) double local variable number 57 → NO_COVERAGE
30. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
31. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
32. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
33. composeItem : Incremented (++a) double local variable number 57 → NO_COVERAGE
34. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
35. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
36. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
37. composeItem : Decremented (--a) double local variable number 57 → NO_COVERAGE
38. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
|
getItemLabelBackgroundColor(), |
|
368
|
|
xw, yw + dy, zw, false, true); |
|
369
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
labelObj.setProperty(Object3D.ITEM_KEY, itemKey); |
|
370
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(labelObj); |
|
371
|
9
1. composeItem : negated conditional → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/label/ItemLabelPositioning::equals → NO_COVERAGE
3. composeItem : removed conditional - replaced equality check with false → NO_COVERAGE
4. composeItem : removed conditional - replaced equality check with true → NO_COVERAGE
5. composeItem : equal to less than → NO_COVERAGE
6. composeItem : equal to less or equal → NO_COVERAGE
7. composeItem : equal to greater than → NO_COVERAGE
8. composeItem : equal to greater or equal → NO_COVERAGE
9. composeItem : equal to not equal → NO_COVERAGE
|
} else if (positioning.equals( |
|
372
|
|
ItemLabelPositioning.FRONT_AND_BACK)) { |
|
373
|
5
1. composeItem : Negated double field lineWidth → NO_COVERAGE
2. composeItem : Incremented (a++) double field lineWidth → NO_COVERAGE
3. composeItem : Decremented (a--) double field lineWidth → NO_COVERAGE
4. composeItem : Incremented (++a) double field lineWidth → NO_COVERAGE
5. composeItem : Decremented (--a) double field → NO_COVERAGE
|
double dz = this.lineWidth ; |
|
374
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
Object3D labelObj1 = Object3D.createLabelObject(label, |
|
375
|
2
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
getItemLabelFont(), getItemLabelColor(), |
|
376
|
37
1. composeItem : Substituted 0 with 1 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Replaced double subtraction with addition → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE
5. composeItem : Negated double local variable number 41 → NO_COVERAGE
6. composeItem : Negated double local variable number 43 → NO_COVERAGE
7. composeItem : Negated double local variable number 45 → NO_COVERAGE
8. composeItem : Negated double local variable number 59 → NO_COVERAGE
9. composeItem : Replaced double operation by second member → NO_COVERAGE
10. composeItem : Replaced double subtraction with addition → NO_COVERAGE
11. composeItem : Replaced double subtraction with multiplication → NO_COVERAGE
12. composeItem : Replaced double subtraction with division → NO_COVERAGE
13. composeItem : Replaced double subtraction with modulus → NO_COVERAGE
14. composeItem : Substituted 0 with 1 → NO_COVERAGE
15. composeItem : Substituted 0 with 1 → NO_COVERAGE
16. composeItem : Substituted 0 with -1 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : Substituted 0 with 1 → NO_COVERAGE
19. composeItem : Substituted 0 with 1 → NO_COVERAGE
20. composeItem : Substituted 0 with -1 → NO_COVERAGE
21. composeItem : Substituted 0 with -1 → NO_COVERAGE
22. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
24. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
25. composeItem : Incremented (a++) double local variable number 59 → NO_COVERAGE
26. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
27. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
28. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
29. composeItem : Decremented (a--) double local variable number 59 → NO_COVERAGE
30. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
31. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
32. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
33. composeItem : Incremented (++a) double local variable number 59 → NO_COVERAGE
34. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
35. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
36. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
37. composeItem : Decremented (--a) double local variable number 59 → NO_COVERAGE
|
getItemLabelBackgroundColor(), |
|
377
|
|
xw, yw, zw - dz, false, false); |
|
378
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
labelObj1.setProperty(Object3D.ITEM_KEY, itemKey); |
|
379
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(labelObj1); |
|
380
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
Object3D labelObj2 = Object3D.createLabelObject(label, |
|
381
|
2
1. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE
2. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
getItemLabelFont(), getItemLabelColor(), |
|
382
|
38
1. composeItem : Substituted 1 with 0 → NO_COVERAGE
2. composeItem : Substituted 0 with 1 → NO_COVERAGE
3. composeItem : Replaced double addition with subtraction → NO_COVERAGE
4. composeItem : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE
5. composeItem : Negated double local variable number 41 → NO_COVERAGE
6. composeItem : Negated double local variable number 43 → NO_COVERAGE
7. composeItem : Negated double local variable number 45 → NO_COVERAGE
8. composeItem : Negated double local variable number 59 → NO_COVERAGE
9. composeItem : Replaced double operation by second member → NO_COVERAGE
10. composeItem : Replaced double addition with subtraction → NO_COVERAGE
11. composeItem : Replaced double addition with multiplication → NO_COVERAGE
12. composeItem : Replaced double addition with division → NO_COVERAGE
13. composeItem : Replaced double addition with modulus → NO_COVERAGE
14. composeItem : Substituted 0 with 1 → NO_COVERAGE
15. composeItem : Substituted 1 with 0 → NO_COVERAGE
16. composeItem : Substituted 1 with -1 → NO_COVERAGE
17. composeItem : Substituted 0 with -1 → NO_COVERAGE
18. composeItem : Substituted 1 with -1 → NO_COVERAGE
19. composeItem : Substituted 1 with 2 → NO_COVERAGE
20. composeItem : Substituted 0 with 1 → NO_COVERAGE
21. composeItem : Substituted 1 with 0 → NO_COVERAGE
22. composeItem : Substituted 0 with -1 → NO_COVERAGE
23. composeItem : Incremented (a++) double local variable number 41 → NO_COVERAGE
24. composeItem : Incremented (a++) double local variable number 43 → NO_COVERAGE
25. composeItem : Incremented (a++) double local variable number 45 → NO_COVERAGE
26. composeItem : Incremented (a++) double local variable number 59 → NO_COVERAGE
27. composeItem : Decremented (a--) double local variable number 41 → NO_COVERAGE
28. composeItem : Decremented (a--) double local variable number 43 → NO_COVERAGE
29. composeItem : Decremented (a--) double local variable number 45 → NO_COVERAGE
30. composeItem : Decremented (a--) double local variable number 59 → NO_COVERAGE
31. composeItem : Incremented (++a) double local variable number 41 → NO_COVERAGE
32. composeItem : Incremented (++a) double local variable number 43 → NO_COVERAGE
33. composeItem : Incremented (++a) double local variable number 45 → NO_COVERAGE
34. composeItem : Incremented (++a) double local variable number 59 → NO_COVERAGE
35. composeItem : Decremented (--a) double local variable number 41 → NO_COVERAGE
36. composeItem : Decremented (--a) double local variable number 43 → NO_COVERAGE
37. composeItem : Decremented (--a) double local variable number 45 → NO_COVERAGE
38. composeItem : Decremented (--a) double local variable number 59 → NO_COVERAGE
|
getItemLabelBackgroundColor(), |
|
383
|
|
xw, yw, zw + dz, true, false); |
|
384
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
labelObj2.setProperty(Object3D.ITEM_KEY, itemKey); |
|
385
|
1
1. composeItem : removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
world.add(labelObj2); |
|
386
|
|
} |
|
387
|
|
} |
|
388
|
|
} |
|
389
|
|
} |
|
390
|
|
|
|
391
|
|
/** |
|
392
|
|
* Creates a segment of a line between (x0, y0, z) and (x1, y1, z), with |
|
393
|
|
* the specified line width and height, taking into account the minimum |
|
394
|
|
* and maximum world coordinates (in the y-direction, because it is assumed |
|
395
|
|
* that we have the full x and z-range required). |
|
396
|
|
* |
|
397
|
|
* @param x0 the starting x-coordinate. |
|
398
|
|
* @param y0 the starting x-coordinate. |
|
399
|
|
* @param x1 the ending x-coordinate. |
|
400
|
|
* @param y1 the ending y-coordinate. |
|
401
|
|
* @param z the z-coordinate. |
|
402
|
|
* @param lineWidth the line width (z-axis). |
|
403
|
|
* @param lineHeight the line height (y-axis). |
|
404
|
|
* @param ymin the lower bound for y-values. |
|
405
|
|
* @param ymax the upper bound for y-values. |
|
406
|
|
* @param color the segment color. |
|
407
|
|
* @param clipColor the clip color (for the faces in the segment that are |
|
408
|
|
* clipped against the edge of the world). |
|
409
|
|
* @param openingFace is an opening face required? |
|
410
|
|
* @param closingFace is a closing face required? |
|
411
|
|
* |
|
412
|
|
* @return A 3D object that is a segment in a line. |
|
413
|
|
*/ |
|
414
|
|
private Object3D createSegment(double x0, double y0, double x1, double y1, |
|
415
|
|
double z, double lineWidth, double lineHeight, double ymin, |
|
416
|
|
double ymax, Color color, Color clipColor, boolean openingFace, |
|
417
|
|
boolean closingFace) { |
|
418
|
18
1. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
2. createSegment : Replaced double division with multiplication → NO_COVERAGE
3. createSegment : Negated double local variable number 11 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double division with multiplication → NO_COVERAGE
6. createSegment : Replaced double division with modulus → NO_COVERAGE
7. createSegment : Replaced double division with addition → NO_COVERAGE
8. createSegment : Replaced double division with subtraction → NO_COVERAGE
9. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
10. createSegment : Substituted 2.0 with 0.0 → NO_COVERAGE
11. createSegment : Substituted 2.0 with -1.0 → NO_COVERAGE
12. createSegment : Substituted 2.0 with -2.0 → NO_COVERAGE
13. createSegment : Substituted 2.0 with 3.0 → NO_COVERAGE
14. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 11 → NO_COVERAGE
16. createSegment : Decremented (a--) double local variable number 11 → NO_COVERAGE
17. createSegment : Incremented (++a) double local variable number 11 → NO_COVERAGE
18. createSegment : Decremented (--a) double local variable number 11 → NO_COVERAGE
|
double wdelta = lineWidth / 2.0; |
|
419
|
18
1. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
2. createSegment : Replaced double division with multiplication → NO_COVERAGE
3. createSegment : Negated double local variable number 13 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double division with multiplication → NO_COVERAGE
6. createSegment : Replaced double division with modulus → NO_COVERAGE
7. createSegment : Replaced double division with addition → NO_COVERAGE
8. createSegment : Replaced double division with subtraction → NO_COVERAGE
9. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
10. createSegment : Substituted 2.0 with 0.0 → NO_COVERAGE
11. createSegment : Substituted 2.0 with -1.0 → NO_COVERAGE
12. createSegment : Substituted 2.0 with -2.0 → NO_COVERAGE
13. createSegment : Substituted 2.0 with 3.0 → NO_COVERAGE
14. createSegment : Substituted 2.0 with 1.0 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 13 → NO_COVERAGE
16. createSegment : Decremented (a--) double local variable number 13 → NO_COVERAGE
17. createSegment : Incremented (++a) double local variable number 13 → NO_COVERAGE
18. createSegment : Decremented (--a) double local variable number 13 → NO_COVERAGE
|
double hdelta = lineHeight / 2.0; |
|
420
|
16
1. createSegment : Replaced double subtraction with addition → NO_COVERAGE
2. createSegment : Negated double local variable number 3 → NO_COVERAGE
3. createSegment : Negated double local variable number 25 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double subtraction with addition → NO_COVERAGE
6. createSegment : Replaced double subtraction with multiplication → NO_COVERAGE
7. createSegment : Replaced double subtraction with division → NO_COVERAGE
8. createSegment : Replaced double subtraction with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 3 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 25 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 3 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 25 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 3 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 25 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 3 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 25 → NO_COVERAGE
|
double y0b = y0 - hdelta; |
|
421
|
16
1. createSegment : Replaced double addition with subtraction → NO_COVERAGE
2. createSegment : Negated double local variable number 3 → NO_COVERAGE
3. createSegment : Negated double local variable number 25 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double addition with subtraction → NO_COVERAGE
6. createSegment : Replaced double addition with multiplication → NO_COVERAGE
7. createSegment : Replaced double addition with division → NO_COVERAGE
8. createSegment : Replaced double addition with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 3 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 25 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 3 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 25 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 3 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 25 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 3 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 25 → NO_COVERAGE
|
double y0t = y0 + hdelta; |
|
422
|
16
1. createSegment : Replaced double subtraction with addition → NO_COVERAGE
2. createSegment : Negated double local variable number 7 → NO_COVERAGE
3. createSegment : Negated double local variable number 25 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double subtraction with addition → NO_COVERAGE
6. createSegment : Replaced double subtraction with multiplication → NO_COVERAGE
7. createSegment : Replaced double subtraction with division → NO_COVERAGE
8. createSegment : Replaced double subtraction with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 7 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 25 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 7 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 25 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 7 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 25 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 7 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 25 → NO_COVERAGE
|
double y1b = y1 - hdelta; |
|
423
|
16
1. createSegment : Replaced double addition with subtraction → NO_COVERAGE
2. createSegment : Negated double local variable number 7 → NO_COVERAGE
3. createSegment : Negated double local variable number 25 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double addition with subtraction → NO_COVERAGE
6. createSegment : Replaced double addition with multiplication → NO_COVERAGE
7. createSegment : Replaced double addition with division → NO_COVERAGE
8. createSegment : Replaced double addition with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 7 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 25 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 7 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 25 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 7 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 25 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 7 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 25 → NO_COVERAGE
|
double y1t = y1 + hdelta; |
|
424
|
16
1. createSegment : Replaced double subtraction with addition → NO_COVERAGE
2. createSegment : Negated double local variable number 9 → NO_COVERAGE
3. createSegment : Negated double local variable number 23 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double subtraction with addition → NO_COVERAGE
6. createSegment : Replaced double subtraction with multiplication → NO_COVERAGE
7. createSegment : Replaced double subtraction with division → NO_COVERAGE
8. createSegment : Replaced double subtraction with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 9 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 23 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 9 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 23 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 9 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 23 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 9 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 23 → NO_COVERAGE
|
double zf = z - wdelta; |
|
425
|
16
1. createSegment : Replaced double addition with subtraction → NO_COVERAGE
2. createSegment : Negated double local variable number 9 → NO_COVERAGE
3. createSegment : Negated double local variable number 23 → NO_COVERAGE
4. createSegment : Replaced double operation by second member → NO_COVERAGE
5. createSegment : Replaced double addition with subtraction → NO_COVERAGE
6. createSegment : Replaced double addition with multiplication → NO_COVERAGE
7. createSegment : Replaced double addition with division → NO_COVERAGE
8. createSegment : Replaced double addition with modulus → NO_COVERAGE
9. createSegment : Incremented (a++) double local variable number 9 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 23 → NO_COVERAGE
11. createSegment : Decremented (a--) double local variable number 9 → NO_COVERAGE
12. createSegment : Decremented (a--) double local variable number 23 → NO_COVERAGE
13. createSegment : Incremented (++a) double local variable number 9 → NO_COVERAGE
14. createSegment : Incremented (++a) double local variable number 23 → NO_COVERAGE
15. createSegment : Decremented (--a) double local variable number 9 → NO_COVERAGE
16. createSegment : Decremented (--a) double local variable number 23 → NO_COVERAGE
|
double zb = z + wdelta; |
|
426
|
41
1. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints → NO_COVERAGE
2. createSegment : Negated double local variable number 1 → NO_COVERAGE
3. createSegment : Negated double local variable number 5 → NO_COVERAGE
4. createSegment : Negated double local variable number 27 → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 31 → NO_COVERAGE
7. createSegment : Negated double local variable number 33 → NO_COVERAGE
8. createSegment : Negated double local variable number 15 → NO_COVERAGE
9. createSegment : Negated double local variable number 17 → NO_COVERAGE
10. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
11. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
12. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
13. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
14. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
16. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
17. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
18. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
19. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
20. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
21. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
22. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
23. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
24. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
25. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
26. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
27. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
28. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
29. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
30. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
31. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
32. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
33. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
34. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
35. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
36. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
37. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
38. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
39. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
40. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
41. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
|
double[] xpts = calcCrossPoints(x0, x1, y0b, y0t, y1b, y1t, ymin, ymax); |
|
427
|
|
Object3D seg = null; |
|
428
|
19
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : negated conditional → NO_COVERAGE
3. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegment : Negated double local variable number 27 → NO_COVERAGE
6. createSegment : Negated double local variable number 17 → NO_COVERAGE
7. createSegment : Less than to less or equal → NO_COVERAGE
8. createSegment : Less than to greater than → NO_COVERAGE
9. createSegment : Less than to greater or equal → NO_COVERAGE
10. createSegment : Less than to equal → NO_COVERAGE
11. createSegment : Less than to not equal → NO_COVERAGE
12. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
13. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
14. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
15. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
16. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
17. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
18. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
19. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
|
if (y0b >= ymax) { // CASE A |
|
429
|
61
1. createSegment : Substituted 0 with 1 → NO_COVERAGE
2. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
3. createSegment : Negated double local variable number 1 → NO_COVERAGE
4. createSegment : Negated double local variable number 5 → NO_COVERAGE
5. createSegment : Negated double local variable number 27 → NO_COVERAGE
6. createSegment : Negated double local variable number 29 → NO_COVERAGE
7. createSegment : Negated double local variable number 31 → NO_COVERAGE
8. createSegment : Negated double local variable number 33 → NO_COVERAGE
9. createSegment : Negated double local variable number 15 → NO_COVERAGE
10. createSegment : Negated double local variable number 17 → NO_COVERAGE
11. createSegment : Negated double local variable number 35 → NO_COVERAGE
12. createSegment : Negated double local variable number 37 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Substituted 0 with 1 → NO_COVERAGE
15. createSegment : Substituted 0 with -1 → NO_COVERAGE
16. createSegment : Substituted 0 with 1 → NO_COVERAGE
17. createSegment : Substituted 0 with -1 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
27. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
28. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
36. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
37. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
38. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
39. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
48. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
49. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
50. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
60. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentA(x0, x1, xpts, y0b, y0t, y1b, y1t, |
|
430
|
|
ymin, ymax, zf, zb, color, clipColor, false, closingFace); |
|
431
|
38
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : changed conditional boundary → NO_COVERAGE
3. createSegment : negated conditional → NO_COVERAGE
4. createSegment : negated conditional → NO_COVERAGE
5. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
6. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
7. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
8. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
9. createSegment : Negated double local variable number 29 → NO_COVERAGE
10. createSegment : Negated double local variable number 17 → NO_COVERAGE
11. createSegment : Negated double local variable number 27 → NO_COVERAGE
12. createSegment : Negated double local variable number 15 → NO_COVERAGE
13. createSegment : Less or equal to less than → NO_COVERAGE
14. createSegment : Less or equal to less than → NO_COVERAGE
15. createSegment : Less or equal to greater than → NO_COVERAGE
16. createSegment : Less or equal to greater than → NO_COVERAGE
17. createSegment : Less or equal to greater or equal → NO_COVERAGE
18. createSegment : Less or equal to greater or equal → NO_COVERAGE
19. createSegment : Less or equal to equal → NO_COVERAGE
20. createSegment : Less or equal to equal → NO_COVERAGE
21. createSegment : Less or equal to not equal → NO_COVERAGE
22. createSegment : Less or equal to not equal → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
31. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
32. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
33. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
34. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
35. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
36. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
37. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
38. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
|
} else if (y0t > ymax && y0b > ymin) { // CASE B |
|
432
|
61
1. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegment : Negated double local variable number 1 → NO_COVERAGE
3. createSegment : Negated double local variable number 5 → NO_COVERAGE
4. createSegment : Negated double local variable number 27 → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 31 → NO_COVERAGE
7. createSegment : Negated double local variable number 33 → NO_COVERAGE
8. createSegment : Negated double local variable number 15 → NO_COVERAGE
9. createSegment : Negated double local variable number 17 → NO_COVERAGE
10. createSegment : Negated double local variable number 35 → NO_COVERAGE
11. createSegment : Negated double local variable number 37 → NO_COVERAGE
12. createSegment : Negated integer local variable number 21 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
16. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
17. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
24. createSegment : Incremented (a++) integer local variable number 21 → NO_COVERAGE
25. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
26. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
36. createSegment : Decremented (a--) integer local variable number 21 → NO_COVERAGE
37. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
38. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
48. createSegment : Incremented (++a) integer local variable number 21 → NO_COVERAGE
49. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
50. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
60. createSegment : Decremented (--a) integer local variable number 21 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentB(x0, x1, xpts, y0b, y0t, y1b, y1t, ymin, ymax, |
|
433
|
|
zf, zb, color, clipColor, openingFace, closingFace); |
|
434
|
38
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : changed conditional boundary → NO_COVERAGE
3. createSegment : negated conditional → NO_COVERAGE
4. createSegment : negated conditional → NO_COVERAGE
5. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
6. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
7. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
8. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
9. createSegment : Negated double local variable number 29 → NO_COVERAGE
10. createSegment : Negated double local variable number 17 → NO_COVERAGE
11. createSegment : Negated double local variable number 27 → NO_COVERAGE
12. createSegment : Negated double local variable number 15 → NO_COVERAGE
13. createSegment : Less or equal to less than → NO_COVERAGE
14. createSegment : greater than to less than → NO_COVERAGE
15. createSegment : Less or equal to greater than → NO_COVERAGE
16. createSegment : greater than to less or equal → NO_COVERAGE
17. createSegment : Less or equal to greater or equal → NO_COVERAGE
18. createSegment : greater than to greater or equal → NO_COVERAGE
19. createSegment : Less or equal to equal → NO_COVERAGE
20. createSegment : greater than to equal → NO_COVERAGE
21. createSegment : Less or equal to not equal → NO_COVERAGE
22. createSegment : greater than to not equal → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
31. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
32. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
33. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
34. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
35. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
36. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
37. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
38. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
|
} else if (y0t > ymax && y0b <= ymin) { // CASE C |
|
435
|
61
1. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegment : Negated double local variable number 1 → NO_COVERAGE
3. createSegment : Negated double local variable number 5 → NO_COVERAGE
4. createSegment : Negated double local variable number 27 → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 31 → NO_COVERAGE
7. createSegment : Negated double local variable number 33 → NO_COVERAGE
8. createSegment : Negated double local variable number 15 → NO_COVERAGE
9. createSegment : Negated double local variable number 17 → NO_COVERAGE
10. createSegment : Negated double local variable number 35 → NO_COVERAGE
11. createSegment : Negated double local variable number 37 → NO_COVERAGE
12. createSegment : Negated integer local variable number 21 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
16. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
17. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
24. createSegment : Incremented (a++) integer local variable number 21 → NO_COVERAGE
25. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
26. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
36. createSegment : Decremented (a--) integer local variable number 21 → NO_COVERAGE
37. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
38. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
48. createSegment : Incremented (++a) integer local variable number 21 → NO_COVERAGE
49. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
50. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
60. createSegment : Decremented (--a) integer local variable number 21 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentC(x0, x1, xpts, y0b, y0t, y1b, y1t, ymin, ymax, |
|
436
|
|
zf, zb, color, clipColor, openingFace, closingFace); |
|
437
|
38
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : changed conditional boundary → NO_COVERAGE
3. createSegment : negated conditional → NO_COVERAGE
4. createSegment : negated conditional → NO_COVERAGE
5. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
6. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
7. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
8. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
9. createSegment : Negated double local variable number 29 → NO_COVERAGE
10. createSegment : Negated double local variable number 15 → NO_COVERAGE
11. createSegment : Negated double local variable number 27 → NO_COVERAGE
12. createSegment : Negated double local variable number 15 → NO_COVERAGE
13. createSegment : Less or equal to less than → NO_COVERAGE
14. createSegment : Less than to less or equal → NO_COVERAGE
15. createSegment : Less or equal to greater than → NO_COVERAGE
16. createSegment : Less than to greater than → NO_COVERAGE
17. createSegment : Less or equal to greater or equal → NO_COVERAGE
18. createSegment : Less than to greater or equal → NO_COVERAGE
19. createSegment : Less or equal to equal → NO_COVERAGE
20. createSegment : Less than to equal → NO_COVERAGE
21. createSegment : Less or equal to not equal → NO_COVERAGE
22. createSegment : Less than to not equal → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
31. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
32. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
33. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
34. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
35. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
36. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
37. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
38. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
|
} else if (y0t > ymin && y0b >= ymin) { // CASE D |
|
438
|
61
1. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegment : Negated double local variable number 1 → NO_COVERAGE
3. createSegment : Negated double local variable number 5 → NO_COVERAGE
4. createSegment : Negated double local variable number 27 → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 31 → NO_COVERAGE
7. createSegment : Negated double local variable number 33 → NO_COVERAGE
8. createSegment : Negated double local variable number 15 → NO_COVERAGE
9. createSegment : Negated double local variable number 17 → NO_COVERAGE
10. createSegment : Negated double local variable number 35 → NO_COVERAGE
11. createSegment : Negated double local variable number 37 → NO_COVERAGE
12. createSegment : Negated integer local variable number 21 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
16. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
17. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
24. createSegment : Incremented (a++) integer local variable number 21 → NO_COVERAGE
25. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
26. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
36. createSegment : Decremented (a--) integer local variable number 21 → NO_COVERAGE
37. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
38. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
48. createSegment : Incremented (++a) integer local variable number 21 → NO_COVERAGE
49. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
50. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
60. createSegment : Decremented (--a) integer local variable number 21 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentD(x0, x1, xpts, y0b, y0t, y1b, y1t, ymin, ymax, |
|
439
|
|
zf, zb, color, clipColor, openingFace, closingFace); |
|
440
|
38
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : changed conditional boundary → NO_COVERAGE
3. createSegment : negated conditional → NO_COVERAGE
4. createSegment : negated conditional → NO_COVERAGE
5. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
6. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
7. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
8. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
9. createSegment : Negated double local variable number 29 → NO_COVERAGE
10. createSegment : Negated double local variable number 15 → NO_COVERAGE
11. createSegment : Negated double local variable number 27 → NO_COVERAGE
12. createSegment : Negated double local variable number 15 → NO_COVERAGE
13. createSegment : Less or equal to less than → NO_COVERAGE
14. createSegment : greater or equal to less than → NO_COVERAGE
15. createSegment : Less or equal to greater than → NO_COVERAGE
16. createSegment : greater or equal to less or equal → NO_COVERAGE
17. createSegment : Less or equal to greater or equal → NO_COVERAGE
18. createSegment : greater or equal to greater than → NO_COVERAGE
19. createSegment : Less or equal to equal → NO_COVERAGE
20. createSegment : greater or equal to equal → NO_COVERAGE
21. createSegment : Less or equal to not equal → NO_COVERAGE
22. createSegment : greater or equal to not equal → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
31. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
32. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
33. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
34. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
35. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
36. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
37. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
38. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
|
} else if (y0t > ymin && y0b < ymin) { // CASE E |
|
441
|
61
1. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegment : Negated double local variable number 1 → NO_COVERAGE
3. createSegment : Negated double local variable number 5 → NO_COVERAGE
4. createSegment : Negated double local variable number 27 → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 31 → NO_COVERAGE
7. createSegment : Negated double local variable number 33 → NO_COVERAGE
8. createSegment : Negated double local variable number 15 → NO_COVERAGE
9. createSegment : Negated double local variable number 17 → NO_COVERAGE
10. createSegment : Negated double local variable number 35 → NO_COVERAGE
11. createSegment : Negated double local variable number 37 → NO_COVERAGE
12. createSegment : Negated integer local variable number 21 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
15. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
16. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
17. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
24. createSegment : Incremented (a++) integer local variable number 21 → NO_COVERAGE
25. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
26. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
27. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
36. createSegment : Decremented (a--) integer local variable number 21 → NO_COVERAGE
37. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
38. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
48. createSegment : Incremented (++a) integer local variable number 21 → NO_COVERAGE
49. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
50. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
60. createSegment : Decremented (--a) integer local variable number 21 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentE(x0, x1, xpts, y0b, y0t, y1b, y1t, ymin, ymax, |
|
442
|
|
zf, zb, color, clipColor, openingFace, closingFace); |
|
443
|
19
1. createSegment : changed conditional boundary → NO_COVERAGE
2. createSegment : negated conditional → NO_COVERAGE
3. createSegment : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegment : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegment : Negated double local variable number 29 → NO_COVERAGE
6. createSegment : Negated double local variable number 15 → NO_COVERAGE
7. createSegment : greater than to less than → NO_COVERAGE
8. createSegment : greater than to less or equal → NO_COVERAGE
9. createSegment : greater than to greater or equal → NO_COVERAGE
10. createSegment : greater than to equal → NO_COVERAGE
11. createSegment : greater than to not equal → NO_COVERAGE
12. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
13. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
14. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
15. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
16. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
17. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
18. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
19. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
|
} else if (y0t <= ymin) { // CASE F |
|
444
|
61
1. createSegment : Substituted 0 with 1 → NO_COVERAGE
2. createSegment : removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
3. createSegment : Negated double local variable number 1 → NO_COVERAGE
4. createSegment : Negated double local variable number 5 → NO_COVERAGE
5. createSegment : Negated double local variable number 27 → NO_COVERAGE
6. createSegment : Negated double local variable number 29 → NO_COVERAGE
7. createSegment : Negated double local variable number 31 → NO_COVERAGE
8. createSegment : Negated double local variable number 33 → NO_COVERAGE
9. createSegment : Negated double local variable number 15 → NO_COVERAGE
10. createSegment : Negated double local variable number 17 → NO_COVERAGE
11. createSegment : Negated double local variable number 35 → NO_COVERAGE
12. createSegment : Negated double local variable number 37 → NO_COVERAGE
13. createSegment : Negated integer local variable number 22 → NO_COVERAGE
14. createSegment : Substituted 0 with 1 → NO_COVERAGE
15. createSegment : Substituted 0 with -1 → NO_COVERAGE
16. createSegment : Substituted 0 with 1 → NO_COVERAGE
17. createSegment : Substituted 0 with -1 → NO_COVERAGE
18. createSegment : Incremented (a++) double local variable number 1 → NO_COVERAGE
19. createSegment : Incremented (a++) double local variable number 5 → NO_COVERAGE
20. createSegment : Incremented (a++) double local variable number 27 → NO_COVERAGE
21. createSegment : Incremented (a++) double local variable number 29 → NO_COVERAGE
22. createSegment : Incremented (a++) double local variable number 31 → NO_COVERAGE
23. createSegment : Incremented (a++) double local variable number 33 → NO_COVERAGE
24. createSegment : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. createSegment : Incremented (a++) double local variable number 17 → NO_COVERAGE
26. createSegment : Incremented (a++) double local variable number 35 → NO_COVERAGE
27. createSegment : Incremented (a++) double local variable number 37 → NO_COVERAGE
28. createSegment : Incremented (a++) integer local variable number 22 → NO_COVERAGE
29. createSegment : Decremented (a--) double local variable number 1 → NO_COVERAGE
30. createSegment : Decremented (a--) double local variable number 5 → NO_COVERAGE
31. createSegment : Decremented (a--) double local variable number 27 → NO_COVERAGE
32. createSegment : Decremented (a--) double local variable number 29 → NO_COVERAGE
33. createSegment : Decremented (a--) double local variable number 31 → NO_COVERAGE
34. createSegment : Decremented (a--) double local variable number 33 → NO_COVERAGE
35. createSegment : Decremented (a--) double local variable number 15 → NO_COVERAGE
36. createSegment : Decremented (a--) double local variable number 17 → NO_COVERAGE
37. createSegment : Decremented (a--) double local variable number 35 → NO_COVERAGE
38. createSegment : Decremented (a--) double local variable number 37 → NO_COVERAGE
39. createSegment : Decremented (a--) integer local variable number 22 → NO_COVERAGE
40. createSegment : Incremented (++a) double local variable number 1 → NO_COVERAGE
41. createSegment : Incremented (++a) double local variable number 5 → NO_COVERAGE
42. createSegment : Incremented (++a) double local variable number 27 → NO_COVERAGE
43. createSegment : Incremented (++a) double local variable number 29 → NO_COVERAGE
44. createSegment : Incremented (++a) double local variable number 31 → NO_COVERAGE
45. createSegment : Incremented (++a) double local variable number 33 → NO_COVERAGE
46. createSegment : Incremented (++a) double local variable number 15 → NO_COVERAGE
47. createSegment : Incremented (++a) double local variable number 17 → NO_COVERAGE
48. createSegment : Incremented (++a) double local variable number 35 → NO_COVERAGE
49. createSegment : Incremented (++a) double local variable number 37 → NO_COVERAGE
50. createSegment : Incremented (++a) integer local variable number 22 → NO_COVERAGE
51. createSegment : Decremented (--a) double local variable number 1 → NO_COVERAGE
52. createSegment : Decremented (--a) double local variable number 5 → NO_COVERAGE
53. createSegment : Decremented (--a) double local variable number 27 → NO_COVERAGE
54. createSegment : Decremented (--a) double local variable number 29 → NO_COVERAGE
55. createSegment : Decremented (--a) double local variable number 31 → NO_COVERAGE
56. createSegment : Decremented (--a) double local variable number 33 → NO_COVERAGE
57. createSegment : Decremented (--a) double local variable number 15 → NO_COVERAGE
58. createSegment : Decremented (--a) double local variable number 17 → NO_COVERAGE
59. createSegment : Decremented (--a) double local variable number 35 → NO_COVERAGE
60. createSegment : Decremented (--a) double local variable number 37 → NO_COVERAGE
61. createSegment : Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
seg = createSegmentF(x0, x1, xpts, y0b, y0t, y1b, y1t, ymin, ymax, |
|
445
|
|
zf, zb, color, clipColor, false, closingFace); |
|
446
|
|
} |
|
447
|
2
1. createSegment : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE
2. createSegment : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
448
|
|
} |
|
449
|
|
|
|
450
|
|
/** |
|
451
|
|
* Calculates the four intersection points between two horizontal lines |
|
452
|
|
* (ymin and ymax) and the lines (x0, y0b, x1, y1b) and (x0, y1t, x1, y1t) |
|
453
|
|
* and returns the x-coordinates in an array. |
|
454
|
|
* |
|
455
|
|
* @param x0 |
|
456
|
|
* @param x1 |
|
457
|
|
* @param y0b |
|
458
|
|
* @param y0t |
|
459
|
|
* @param y1b |
|
460
|
|
* @param y1t |
|
461
|
|
* @param ymin |
|
462
|
|
* @param ymax |
|
463
|
|
* |
|
464
|
|
* @return An array of 4 x-coordinates. |
|
465
|
|
*/ |
|
466
|
|
private double[] calcCrossPoints(double x0, double x1, double y0b, |
|
467
|
|
double y0t, double y1b, double y1t, double ymin, double ymax) { |
|
468
|
52
1. calcCrossPoints : Substituted 4 with 5 → NO_COVERAGE
2. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
3. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
4. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
5. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
6. calcCrossPoints : Substituted 2 with 3 → NO_COVERAGE
7. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
8. calcCrossPoints : Substituted 3 with 4 → NO_COVERAGE
9. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
10. calcCrossPoints : Substituted 4 with 1 → NO_COVERAGE
11. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
12. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
13. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
14. calcCrossPoints : Substituted 2 with 1 → NO_COVERAGE
15. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
16. calcCrossPoints : Substituted 3 with 1 → NO_COVERAGE
17. calcCrossPoints : Substituted NaN with 1.0 → NO_COVERAGE
18. calcCrossPoints : Substituted 4 with 0 → NO_COVERAGE
19. calcCrossPoints : Substituted NaN with 0.0 → NO_COVERAGE
20. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
21. calcCrossPoints : Substituted NaN with 0.0 → NO_COVERAGE
22. calcCrossPoints : Substituted 2 with 0 → NO_COVERAGE
23. calcCrossPoints : Substituted NaN with 0.0 → NO_COVERAGE
24. calcCrossPoints : Substituted 3 with 0 → NO_COVERAGE
25. calcCrossPoints : Substituted NaN with 0.0 → NO_COVERAGE
26. calcCrossPoints : Substituted 4 with -1 → NO_COVERAGE
27. calcCrossPoints : Substituted 0 with -1 → NO_COVERAGE
28. calcCrossPoints : Substituted NaN with -1.0 → NO_COVERAGE
29. calcCrossPoints : Substituted 1 with -1 → NO_COVERAGE
30. calcCrossPoints : Substituted NaN with -1.0 → NO_COVERAGE
31. calcCrossPoints : Substituted 2 with -1 → NO_COVERAGE
32. calcCrossPoints : Substituted NaN with -1.0 → NO_COVERAGE
33. calcCrossPoints : Substituted 3 with -1 → NO_COVERAGE
34. calcCrossPoints : Substituted NaN with -1.0 → NO_COVERAGE
35. calcCrossPoints : Substituted 4 with -4 → NO_COVERAGE
36. calcCrossPoints : Substituted NaN with NaN → NO_COVERAGE
37. calcCrossPoints : Substituted 1 with -1 → NO_COVERAGE
38. calcCrossPoints : Substituted NaN with NaN → NO_COVERAGE
39. calcCrossPoints : Substituted 2 with -2 → NO_COVERAGE
40. calcCrossPoints : Substituted NaN with NaN → NO_COVERAGE
41. calcCrossPoints : Substituted 3 with -3 → NO_COVERAGE
42. calcCrossPoints : Substituted NaN with NaN → NO_COVERAGE
43. calcCrossPoints : Substituted 4 with 5 → NO_COVERAGE
44. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
45. calcCrossPoints : Substituted 1 with 2 → NO_COVERAGE
46. calcCrossPoints : Substituted 2 with 3 → NO_COVERAGE
47. calcCrossPoints : Substituted 3 with 4 → NO_COVERAGE
48. calcCrossPoints : Substituted 4 with 3 → NO_COVERAGE
49. calcCrossPoints : Substituted 0 with -1 → NO_COVERAGE
50. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
51. calcCrossPoints : Substituted 2 with 1 → NO_COVERAGE
52. calcCrossPoints : Substituted 3 with 2 → NO_COVERAGE
|
double[] xpts = new double[] { Double.NaN, Double.NaN, Double.NaN, |
|
469
|
|
Double.NaN }; |
|
470
|
38
1. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
4. calcCrossPoints : Negated double local variable number 5 → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 13 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 5 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 9 → NO_COVERAGE
8. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
14. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double division with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double division with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double division with subtraction → NO_COVERAGE
23. calcCrossPoints : Incremented (a++) double local variable number 5 → NO_COVERAGE
24. calcCrossPoints : Incremented (a++) double local variable number 13 → NO_COVERAGE
25. calcCrossPoints : Incremented (a++) double local variable number 5 → NO_COVERAGE
26. calcCrossPoints : Incremented (a++) double local variable number 9 → NO_COVERAGE
27. calcCrossPoints : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. calcCrossPoints : Decremented (a--) double local variable number 13 → NO_COVERAGE
29. calcCrossPoints : Decremented (a--) double local variable number 5 → NO_COVERAGE
30. calcCrossPoints : Decremented (a--) double local variable number 9 → NO_COVERAGE
31. calcCrossPoints : Incremented (++a) double local variable number 5 → NO_COVERAGE
32. calcCrossPoints : Incremented (++a) double local variable number 13 → NO_COVERAGE
33. calcCrossPoints : Incremented (++a) double local variable number 5 → NO_COVERAGE
34. calcCrossPoints : Incremented (++a) double local variable number 9 → NO_COVERAGE
35. calcCrossPoints : Decremented (--a) double local variable number 5 → NO_COVERAGE
36. calcCrossPoints : Decremented (--a) double local variable number 13 → NO_COVERAGE
37. calcCrossPoints : Decremented (--a) double local variable number 5 → NO_COVERAGE
38. calcCrossPoints : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
double factor = (y0b - ymin) / (y0b - y1b); |
|
471
|
43
1. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
4. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 18 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 3 → NO_COVERAGE
8. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
14. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double multiplication with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double addition with multiplication → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double multiplication with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double addition with division → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double multiplication with subtraction → NO_COVERAGE
23. calcCrossPoints : Replaced double addition with modulus → NO_COVERAGE
24. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
25. calcCrossPoints : Substituted 0 with -1 → NO_COVERAGE
26. calcCrossPoints : Substituted 0 with 1 → NO_COVERAGE
27. calcCrossPoints : Substituted 0 with -1 → NO_COVERAGE
28. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
29. calcCrossPoints : Incremented (a++) double local variable number 18 → NO_COVERAGE
30. calcCrossPoints : Incremented (a++) double local variable number 3 → NO_COVERAGE
31. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
32. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
33. calcCrossPoints : Decremented (a--) double local variable number 18 → NO_COVERAGE
34. calcCrossPoints : Decremented (a--) double local variable number 3 → NO_COVERAGE
35. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
36. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
37. calcCrossPoints : Incremented (++a) double local variable number 18 → NO_COVERAGE
38. calcCrossPoints : Incremented (++a) double local variable number 3 → NO_COVERAGE
39. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
40. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
41. calcCrossPoints : Decremented (--a) double local variable number 18 → NO_COVERAGE
42. calcCrossPoints : Decremented (--a) double local variable number 3 → NO_COVERAGE
43. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
|
xpts[0] = x0 + factor * (x1 - x0); |
|
472
|
38
1. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
4. calcCrossPoints : Negated double local variable number 7 → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 13 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 7 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 11 → NO_COVERAGE
8. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
14. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double division with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double division with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double division with subtraction → NO_COVERAGE
23. calcCrossPoints : Incremented (a++) double local variable number 7 → NO_COVERAGE
24. calcCrossPoints : Incremented (a++) double local variable number 13 → NO_COVERAGE
25. calcCrossPoints : Incremented (a++) double local variable number 7 → NO_COVERAGE
26. calcCrossPoints : Incremented (a++) double local variable number 11 → NO_COVERAGE
27. calcCrossPoints : Decremented (a--) double local variable number 7 → NO_COVERAGE
28. calcCrossPoints : Decremented (a--) double local variable number 13 → NO_COVERAGE
29. calcCrossPoints : Decremented (a--) double local variable number 7 → NO_COVERAGE
30. calcCrossPoints : Decremented (a--) double local variable number 11 → NO_COVERAGE
31. calcCrossPoints : Incremented (++a) double local variable number 7 → NO_COVERAGE
32. calcCrossPoints : Incremented (++a) double local variable number 13 → NO_COVERAGE
33. calcCrossPoints : Incremented (++a) double local variable number 7 → NO_COVERAGE
34. calcCrossPoints : Incremented (++a) double local variable number 11 → NO_COVERAGE
35. calcCrossPoints : Decremented (--a) double local variable number 7 → NO_COVERAGE
36. calcCrossPoints : Decremented (--a) double local variable number 13 → NO_COVERAGE
37. calcCrossPoints : Decremented (--a) double local variable number 7 → NO_COVERAGE
38. calcCrossPoints : Decremented (--a) double local variable number 11 → NO_COVERAGE
|
factor = (y0t - ymin) / (y0t - y1t); |
|
473
|
44
1. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
4. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 18 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 3 → NO_COVERAGE
8. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
14. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double multiplication with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double addition with multiplication → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double multiplication with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double addition with division → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double multiplication with subtraction → NO_COVERAGE
23. calcCrossPoints : Replaced double addition with modulus → NO_COVERAGE
24. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
25. calcCrossPoints : Substituted 1 with -1 → NO_COVERAGE
26. calcCrossPoints : Substituted 1 with -1 → NO_COVERAGE
27. calcCrossPoints : Substituted 1 with 2 → NO_COVERAGE
28. calcCrossPoints : Substituted 1 with 0 → NO_COVERAGE
29. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
30. calcCrossPoints : Incremented (a++) double local variable number 18 → NO_COVERAGE
31. calcCrossPoints : Incremented (a++) double local variable number 3 → NO_COVERAGE
32. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
33. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
34. calcCrossPoints : Decremented (a--) double local variable number 18 → NO_COVERAGE
35. calcCrossPoints : Decremented (a--) double local variable number 3 → NO_COVERAGE
36. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
37. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
38. calcCrossPoints : Incremented (++a) double local variable number 18 → NO_COVERAGE
39. calcCrossPoints : Incremented (++a) double local variable number 3 → NO_COVERAGE
40. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
41. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
42. calcCrossPoints : Decremented (--a) double local variable number 18 → NO_COVERAGE
43. calcCrossPoints : Decremented (--a) double local variable number 3 → NO_COVERAGE
44. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
|
xpts[1] = x0 + factor * (x1 - x0); |
|
474
|
38
1. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
4. calcCrossPoints : Negated double local variable number 5 → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 15 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 5 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 9 → NO_COVERAGE
8. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
14. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double division with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double division with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double division with subtraction → NO_COVERAGE
23. calcCrossPoints : Incremented (a++) double local variable number 5 → NO_COVERAGE
24. calcCrossPoints : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. calcCrossPoints : Incremented (a++) double local variable number 5 → NO_COVERAGE
26. calcCrossPoints : Incremented (a++) double local variable number 9 → NO_COVERAGE
27. calcCrossPoints : Decremented (a--) double local variable number 5 → NO_COVERAGE
28. calcCrossPoints : Decremented (a--) double local variable number 15 → NO_COVERAGE
29. calcCrossPoints : Decremented (a--) double local variable number 5 → NO_COVERAGE
30. calcCrossPoints : Decremented (a--) double local variable number 9 → NO_COVERAGE
31. calcCrossPoints : Incremented (++a) double local variable number 5 → NO_COVERAGE
32. calcCrossPoints : Incremented (++a) double local variable number 15 → NO_COVERAGE
33. calcCrossPoints : Incremented (++a) double local variable number 5 → NO_COVERAGE
34. calcCrossPoints : Incremented (++a) double local variable number 9 → NO_COVERAGE
35. calcCrossPoints : Decremented (--a) double local variable number 5 → NO_COVERAGE
36. calcCrossPoints : Decremented (--a) double local variable number 15 → NO_COVERAGE
37. calcCrossPoints : Decremented (--a) double local variable number 5 → NO_COVERAGE
38. calcCrossPoints : Decremented (--a) double local variable number 9 → NO_COVERAGE
|
factor = (y0b - ymax) / (y0b - y1b); |
|
475
|
45
1. calcCrossPoints : Substituted 2 with 3 → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
4. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 18 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 3 → NO_COVERAGE
8. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
14. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double multiplication with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double addition with multiplication → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double multiplication with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double addition with division → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double multiplication with subtraction → NO_COVERAGE
23. calcCrossPoints : Replaced double addition with modulus → NO_COVERAGE
24. calcCrossPoints : Substituted 2 with 1 → NO_COVERAGE
25. calcCrossPoints : Substituted 2 with 0 → NO_COVERAGE
26. calcCrossPoints : Substituted 2 with -1 → NO_COVERAGE
27. calcCrossPoints : Substituted 2 with -2 → NO_COVERAGE
28. calcCrossPoints : Substituted 2 with 3 → NO_COVERAGE
29. calcCrossPoints : Substituted 2 with 1 → NO_COVERAGE
30. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
31. calcCrossPoints : Incremented (a++) double local variable number 18 → NO_COVERAGE
32. calcCrossPoints : Incremented (a++) double local variable number 3 → NO_COVERAGE
33. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
34. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
35. calcCrossPoints : Decremented (a--) double local variable number 18 → NO_COVERAGE
36. calcCrossPoints : Decremented (a--) double local variable number 3 → NO_COVERAGE
37. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
38. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. calcCrossPoints : Incremented (++a) double local variable number 18 → NO_COVERAGE
40. calcCrossPoints : Incremented (++a) double local variable number 3 → NO_COVERAGE
41. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
42. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
43. calcCrossPoints : Decremented (--a) double local variable number 18 → NO_COVERAGE
44. calcCrossPoints : Decremented (--a) double local variable number 3 → NO_COVERAGE
45. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
|
xpts[2] = x0 + factor * (x1 - x0); |
|
476
|
38
1. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
4. calcCrossPoints : Negated double local variable number 7 → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 15 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 7 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 11 → NO_COVERAGE
8. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double division with multiplication → NO_COVERAGE
14. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double division with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double division with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double division with subtraction → NO_COVERAGE
23. calcCrossPoints : Incremented (a++) double local variable number 7 → NO_COVERAGE
24. calcCrossPoints : Incremented (a++) double local variable number 15 → NO_COVERAGE
25. calcCrossPoints : Incremented (a++) double local variable number 7 → NO_COVERAGE
26. calcCrossPoints : Incremented (a++) double local variable number 11 → NO_COVERAGE
27. calcCrossPoints : Decremented (a--) double local variable number 7 → NO_COVERAGE
28. calcCrossPoints : Decremented (a--) double local variable number 15 → NO_COVERAGE
29. calcCrossPoints : Decremented (a--) double local variable number 7 → NO_COVERAGE
30. calcCrossPoints : Decremented (a--) double local variable number 11 → NO_COVERAGE
31. calcCrossPoints : Incremented (++a) double local variable number 7 → NO_COVERAGE
32. calcCrossPoints : Incremented (++a) double local variable number 15 → NO_COVERAGE
33. calcCrossPoints : Incremented (++a) double local variable number 7 → NO_COVERAGE
34. calcCrossPoints : Incremented (++a) double local variable number 11 → NO_COVERAGE
35. calcCrossPoints : Decremented (--a) double local variable number 7 → NO_COVERAGE
36. calcCrossPoints : Decremented (--a) double local variable number 15 → NO_COVERAGE
37. calcCrossPoints : Decremented (--a) double local variable number 7 → NO_COVERAGE
38. calcCrossPoints : Decremented (--a) double local variable number 11 → NO_COVERAGE
|
factor = (y0t - ymax) / (y0t - y1t); |
|
477
|
45
1. calcCrossPoints : Substituted 3 with 4 → NO_COVERAGE
2. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
3. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
4. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
5. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
6. calcCrossPoints : Negated double local variable number 18 → NO_COVERAGE
7. calcCrossPoints : Negated double local variable number 3 → NO_COVERAGE
8. calcCrossPoints : Negated double local variable number 1 → NO_COVERAGE
9. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
10. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
11. calcCrossPoints : Replaced double operation by second member → NO_COVERAGE
12. calcCrossPoints : Replaced double subtraction with addition → NO_COVERAGE
13. calcCrossPoints : Replaced double multiplication with division → NO_COVERAGE
14. calcCrossPoints : Replaced double addition with subtraction → NO_COVERAGE
15. calcCrossPoints : Replaced double subtraction with multiplication → NO_COVERAGE
16. calcCrossPoints : Replaced double multiplication with modulus → NO_COVERAGE
17. calcCrossPoints : Replaced double addition with multiplication → NO_COVERAGE
18. calcCrossPoints : Replaced double subtraction with division → NO_COVERAGE
19. calcCrossPoints : Replaced double multiplication with addition → NO_COVERAGE
20. calcCrossPoints : Replaced double addition with division → NO_COVERAGE
21. calcCrossPoints : Replaced double subtraction with modulus → NO_COVERAGE
22. calcCrossPoints : Replaced double multiplication with subtraction → NO_COVERAGE
23. calcCrossPoints : Replaced double addition with modulus → NO_COVERAGE
24. calcCrossPoints : Substituted 3 with 1 → NO_COVERAGE
25. calcCrossPoints : Substituted 3 with 0 → NO_COVERAGE
26. calcCrossPoints : Substituted 3 with -1 → NO_COVERAGE
27. calcCrossPoints : Substituted 3 with -3 → NO_COVERAGE
28. calcCrossPoints : Substituted 3 with 4 → NO_COVERAGE
29. calcCrossPoints : Substituted 3 with 2 → NO_COVERAGE
30. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
31. calcCrossPoints : Incremented (a++) double local variable number 18 → NO_COVERAGE
32. calcCrossPoints : Incremented (a++) double local variable number 3 → NO_COVERAGE
33. calcCrossPoints : Incremented (a++) double local variable number 1 → NO_COVERAGE
34. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
35. calcCrossPoints : Decremented (a--) double local variable number 18 → NO_COVERAGE
36. calcCrossPoints : Decremented (a--) double local variable number 3 → NO_COVERAGE
37. calcCrossPoints : Decremented (a--) double local variable number 1 → NO_COVERAGE
38. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
39. calcCrossPoints : Incremented (++a) double local variable number 18 → NO_COVERAGE
40. calcCrossPoints : Incremented (++a) double local variable number 3 → NO_COVERAGE
41. calcCrossPoints : Incremented (++a) double local variable number 1 → NO_COVERAGE
42. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
43. calcCrossPoints : Decremented (--a) double local variable number 18 → NO_COVERAGE
44. calcCrossPoints : Decremented (--a) double local variable number 3 → NO_COVERAGE
45. calcCrossPoints : Decremented (--a) double local variable number 1 → NO_COVERAGE
|
xpts[3] = x0 + factor * (x1 - x0); |
|
478
|
2
1. calcCrossPoints : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints → NO_COVERAGE
2. calcCrossPoints : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return xpts; |
|
479
|
|
} |
|
480
|
|
|
|
481
|
|
/** |
|
482
|
|
* Creates a segment for the case where the start of the segment is |
|
483
|
|
* completely above the upper bound of the axis at the left side of the |
|
484
|
|
* chart. |
|
485
|
|
* |
|
486
|
|
* @param x0 |
|
487
|
|
* @param x1 |
|
488
|
|
* @param xpts |
|
489
|
|
* @param y0b |
|
490
|
|
* @param y0t |
|
491
|
|
* @param y1b |
|
492
|
|
* @param y1t |
|
493
|
|
* @param wmin |
|
494
|
|
* @param wmax |
|
495
|
|
* @param zf |
|
496
|
|
* @param zb |
|
497
|
|
* @param color |
|
498
|
|
* @param clipColor |
|
499
|
|
* @param openingFace ignored because there is no opening face for this |
|
500
|
|
* case. |
|
501
|
|
* @param closingFace |
|
502
|
|
* |
|
503
|
|
* @return A segment ({@code null} if the segment is entirely clipped). |
|
504
|
|
*/ |
|
505
|
|
private Object3D createSegmentA(double x0, double x1, double[] xpts, |
|
506
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
507
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
508
|
|
boolean openingFace, boolean closingFace) { |
|
509
|
19
1. createSegmentA : changed conditional boundary → NO_COVERAGE
2. createSegmentA : negated conditional → NO_COVERAGE
3. createSegmentA : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentA : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentA : Less or equal to less than → NO_COVERAGE
8. createSegmentA : Less or equal to greater than → NO_COVERAGE
9. createSegmentA : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentA : Less or equal to equal → NO_COVERAGE
11. createSegmentA : Less or equal to not equal → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b > wmax) { |
|
510
|
1
1. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return null; // nothing is visible |
|
511
|
|
} |
|
512
|
19
1. createSegmentA : changed conditional boundary → NO_COVERAGE
2. createSegmentA : negated conditional → NO_COVERAGE
3. createSegmentA : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentA : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentA : Less or equal to less than → NO_COVERAGE
8. createSegmentA : Less or equal to greater than → NO_COVERAGE
9. createSegmentA : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentA : Less or equal to equal → NO_COVERAGE
11. createSegmentA : Less or equal to not equal → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
513
|
19
1. createSegmentA : changed conditional boundary → NO_COVERAGE
2. createSegmentA : negated conditional → NO_COVERAGE
3. createSegmentA : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentA : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentA : Less than to less or equal → NO_COVERAGE
8. createSegmentA : Less than to greater than → NO_COVERAGE
9. createSegmentA : Less than to greater or equal → NO_COVERAGE
10. createSegmentA : Less than to equal → NO_COVERAGE
11. createSegmentA : Less than to not equal → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
514
|
|
// create a triangle with the top and right |
|
515
|
7
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
516
|
1
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
517
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
518
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
519
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
520
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
521
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
522
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
523
|
45
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
16. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
18. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
23. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
25. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
31. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
32. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
33. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
34. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
37. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
38. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
39. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
40. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4}); // front |
|
524
|
46
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
15. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
16. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
18. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
23. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
25. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
33. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
34. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
37. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
38. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
40. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
41. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
44. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
45. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 5, 3}); // rear |
|
525
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}, "clip"); // clip top |
|
526
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 1, 0}); // bottom |
|
527
|
13
1. createSegmentA : negated conditional → NO_COVERAGE
2. createSegmentA : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentA : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentA : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentA : equal to less than → NO_COVERAGE
6. createSegmentA : equal to less or equal → NO_COVERAGE
7. createSegmentA : equal to greater than → NO_COVERAGE
8. createSegmentA : equal to greater or equal → NO_COVERAGE
9. createSegmentA : equal to not equal → NO_COVERAGE
10. createSegmentA : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentA : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentA : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentA : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
528
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); |
|
529
|
|
} |
|
530
|
2
1. createSegmentA : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
2. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
531
|
|
} else { |
|
532
|
7
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
533
|
1
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
534
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
535
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
536
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
537
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
538
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
539
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
540
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
541
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
542
|
59
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
543
|
60
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
544
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // clip top |
|
545
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip bottom |
|
546
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 1, 0}); // bottom |
|
547
|
13
1. createSegmentA : negated conditional → NO_COVERAGE
2. createSegmentA : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentA : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentA : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentA : equal to less than → NO_COVERAGE
6. createSegmentA : equal to less or equal → NO_COVERAGE
7. createSegmentA : equal to greater than → NO_COVERAGE
8. createSegmentA : equal to greater or equal → NO_COVERAGE
9. createSegmentA : equal to not equal → NO_COVERAGE
10. createSegmentA : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentA : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentA : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentA : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
548
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); |
|
549
|
|
} |
|
550
|
2
1. createSegmentA : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
2. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
551
|
|
} |
|
552
|
19
1. createSegmentA : changed conditional boundary → NO_COVERAGE
2. createSegmentA : negated conditional → NO_COVERAGE
3. createSegmentA : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentA : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentA : Less than to less or equal → NO_COVERAGE
8. createSegmentA : Less than to greater than → NO_COVERAGE
9. createSegmentA : Less than to greater or equal → NO_COVERAGE
10. createSegmentA : Less than to equal → NO_COVERAGE
11. createSegmentA : Less than to not equal → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
} else if (y1t >= wmin) { |
|
553
|
19
1. createSegmentA : changed conditional boundary → NO_COVERAGE
2. createSegmentA : negated conditional → NO_COVERAGE
3. createSegmentA : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentA : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentA : Less than to less or equal → NO_COVERAGE
8. createSegmentA : Less than to greater than → NO_COVERAGE
9. createSegmentA : Less than to greater or equal → NO_COVERAGE
10. createSegmentA : Less than to equal → NO_COVERAGE
11. createSegmentA : Less than to not equal → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
554
|
7
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
555
|
1
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
556
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
557
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
558
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
559
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
560
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
561
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
562
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
563
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
564
|
59
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
565
|
60
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
566
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}, "clip"); // clip top |
|
567
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
568
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 1, 0}); // bottom |
|
569
|
13
1. createSegmentA : negated conditional → NO_COVERAGE
2. createSegmentA : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentA : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentA : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentA : equal to less than → NO_COVERAGE
6. createSegmentA : equal to less or equal → NO_COVERAGE
7. createSegmentA : equal to greater than → NO_COVERAGE
8. createSegmentA : equal to greater or equal → NO_COVERAGE
9. createSegmentA : equal to not equal → NO_COVERAGE
10. createSegmentA : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentA : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentA : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentA : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
570
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
571
|
|
} |
|
572
|
2
1. createSegmentA : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
2. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
573
|
|
} else { |
|
574
|
7
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
575
|
1
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
576
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
577
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
578
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
579
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
580
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
581
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
582
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
583
|
16
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentA : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentA : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentA : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentA : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
584
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
585
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
586
|
73
1. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentA : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentA : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentA : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentA : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentA : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
587
|
74
1. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentA : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentA : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
588
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); |
|
589
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}, "clip"); // clip top |
|
590
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}, "clip"); // clip bottom |
|
591
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 9 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 8 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 9 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 8 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 9 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 8 with -8 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 9 with -9 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 8 with 9 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 9 with 10 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 8 with 7 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 9 with 8 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {8, 9, 1, 0}); |
|
592
|
|
// there is no opening face in this case |
|
593
|
13
1. createSegmentA : negated conditional → NO_COVERAGE
2. createSegmentA : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentA : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentA : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentA : equal to less than → NO_COVERAGE
6. createSegmentA : equal to less or equal → NO_COVERAGE
7. createSegmentA : equal to greater than → NO_COVERAGE
8. createSegmentA : equal to greater or equal → NO_COVERAGE
9. createSegmentA : equal to not equal → NO_COVERAGE
10. createSegmentA : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentA : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentA : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentA : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
594
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
595
|
|
} |
|
596
|
2
1. createSegmentA : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
2. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
597
|
|
} |
|
598
|
|
} else { |
|
599
|
7
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
600
|
1
1. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
601
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
602
|
23
1. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
603
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
604
|
23
1. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
605
|
22
1. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
606
|
22
1. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
607
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
608
|
21
1. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentA : Negated double array field → NO_COVERAGE
4. createSegmentA : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentA : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentA : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentA : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentA : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentA : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentA : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentA : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentA : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentA : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentA : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentA : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentA : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentA : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
609
|
59
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
610
|
60
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
611
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
|
seg.addFace(new int[] {4, 2, 3, 5}); // top |
|
612
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}); // bottom |
|
613
|
58
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}, "clip"); // clip top |
|
614
|
61
1. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentA : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentA : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentA : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentA : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentA : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentA : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentA : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentA : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentA : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentA : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentA : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentA : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentA : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentA : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentA : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentA : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentA : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentA : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentA : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentA : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentA : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentA : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentA : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentA : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentA : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentA : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentA : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentA : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentA : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentA : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentA : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentA : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentA : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentA : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentA : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentA : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentA : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentA : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentA : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentA : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentA : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip bottom |
|
615
|
|
// there are no opening or closing faces in this case |
|
616
|
2
1. createSegmentA : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE
2. createSegmentA : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
617
|
|
} |
|
618
|
|
} |
|
619
|
|
|
|
620
|
|
/** |
|
621
|
|
* Creates a segment for the case where the left end of the line spans |
|
622
|
|
* the axis maximum on the left side of the chart. |
|
623
|
|
* |
|
624
|
|
* @param x0 |
|
625
|
|
* @param x1 |
|
626
|
|
* @param xpts |
|
627
|
|
* @param y0b |
|
628
|
|
* @param y0t |
|
629
|
|
* @param y1b |
|
630
|
|
* @param y1t |
|
631
|
|
* @param wmin |
|
632
|
|
* @param wmax |
|
633
|
|
* @param zf |
|
634
|
|
* @param zb |
|
635
|
|
* @param color |
|
636
|
|
* @param clipColor |
|
637
|
|
* @param openingFace |
|
638
|
|
* @param closingFace |
|
639
|
|
* |
|
640
|
|
* @return A segment. |
|
641
|
|
*/ |
|
642
|
|
private Object3D createSegmentB(double x0, double x1, double[] xpts, |
|
643
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
644
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
645
|
|
boolean openingFace, boolean closingFace) { |
|
646
|
|
|
|
647
|
19
1. createSegmentB : changed conditional boundary → NO_COVERAGE
2. createSegmentB : negated conditional → NO_COVERAGE
3. createSegmentB : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentB : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentB : Less than to less or equal → NO_COVERAGE
8. createSegmentB : Less than to greater than → NO_COVERAGE
9. createSegmentB : Less than to greater or equal → NO_COVERAGE
10. createSegmentB : Less than to equal → NO_COVERAGE
11. createSegmentB : Less than to not equal → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b >= wmax) { |
|
648
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
649
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
650
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
651
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
652
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
653
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
654
|
23
1. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
655
|
23
1. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
656
|
45
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
16. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
18. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
23. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
25. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
31. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
32. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
33. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
34. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
37. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
38. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
39. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
40. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
45. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4}); // front |
|
657
|
46
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
15. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
16. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
18. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
23. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
25. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
31. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
33. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
34. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
37. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
38. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
40. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
41. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
44. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
45. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 5, 3}); // rear |
|
658
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 4, 5, 1}); // bottom |
|
659
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
660
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
661
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
662
|
|
} |
|
663
|
|
// there is no closing face in this case |
|
664
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
665
|
|
} |
|
666
|
19
1. createSegmentB : changed conditional boundary → NO_COVERAGE
2. createSegmentB : negated conditional → NO_COVERAGE
3. createSegmentB : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentB : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentB : Less or equal to less than → NO_COVERAGE
8. createSegmentB : Less or equal to greater than → NO_COVERAGE
9. createSegmentB : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentB : Less or equal to equal → NO_COVERAGE
11. createSegmentB : Less or equal to not equal → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
667
|
19
1. createSegmentB : changed conditional boundary → NO_COVERAGE
2. createSegmentB : negated conditional → NO_COVERAGE
3. createSegmentB : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentB : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentB : Less than to less or equal → NO_COVERAGE
8. createSegmentB : Less than to greater than → NO_COVERAGE
9. createSegmentB : Less than to greater or equal → NO_COVERAGE
10. createSegmentB : Less than to equal → NO_COVERAGE
11. createSegmentB : Less than to not equal → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
668
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
669
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
670
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
671
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
672
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
673
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
674
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
675
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
676
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
677
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
678
|
59
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
679
|
60
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
680
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
681
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}); // bottom |
|
682
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
683
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
684
|
|
} |
|
685
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
686
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
687
|
|
} |
|
688
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
689
|
|
} else { |
|
690
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
691
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
692
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
693
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
694
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
695
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
696
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
697
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
698
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
699
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
700
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
701
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
702
|
73
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
703
|
74
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
704
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
705
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
|
seg.addFace(new int[] {8, 6, 7, 9}, "clip"); // clip bottom |
|
706
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}); |
|
707
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
708
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
709
|
|
} |
|
710
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
711
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
712
|
|
} |
|
713
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
714
|
|
} |
|
715
|
|
} |
|
716
|
19
1. createSegmentB : changed conditional boundary → NO_COVERAGE
2. createSegmentB : negated conditional → NO_COVERAGE
3. createSegmentB : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentB : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentB : Less or equal to less than → NO_COVERAGE
8. createSegmentB : Less or equal to greater than → NO_COVERAGE
9. createSegmentB : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentB : Less or equal to equal → NO_COVERAGE
11. createSegmentB : Less or equal to not equal → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1t > wmin) { |
|
717
|
19
1. createSegmentB : changed conditional boundary → NO_COVERAGE
2. createSegmentB : negated conditional → NO_COVERAGE
3. createSegmentB : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentB : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentB : Less than to less or equal → NO_COVERAGE
8. createSegmentB : Less than to greater than → NO_COVERAGE
9. createSegmentB : Less than to greater or equal → NO_COVERAGE
10. createSegmentB : Less than to equal → NO_COVERAGE
11. createSegmentB : Less than to not equal → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
718
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
719
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
720
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
721
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
722
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
723
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
724
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
725
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
726
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
727
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
728
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
729
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
730
|
73
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
731
|
74
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
732
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
733
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // top |
|
734
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}); // bottom |
|
735
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
736
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
737
|
|
} |
|
738
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
739
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
740
|
|
} |
|
741
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
742
|
|
} else { |
|
743
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
744
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
745
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
746
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
747
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
748
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
749
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
750
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
751
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
752
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
753
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
754
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
755
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
756
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
757
|
87
1. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
13. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
14. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
15. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
23. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
24. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
25. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
26. createSegmentB : Substituted 10 with 1 → NO_COVERAGE
27. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
33. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
34. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
35. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
36. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
37. createSegmentB : Substituted 10 with 0 → NO_COVERAGE
38. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
44. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
46. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
47. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
48. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
49. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
50. createSegmentB : Substituted 10 with -1 → NO_COVERAGE
51. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
52. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
54. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
55. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
56. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
57. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
58. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
59. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
60. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
61. createSegmentB : Substituted 10 with -10 → NO_COVERAGE
62. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
63. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
64. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
65. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
66. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
67. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
68. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
69. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
70. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
71. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
72. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
73. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
74. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
75. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
76. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
77. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
78. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
79. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
80. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
81. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
82. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
83. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
84. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
85. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
86. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
87. createSegmentB : Substituted 10 with 9 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8, 10}); // front |
|
758
|
88
1. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
12. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
13. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
14. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
15. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 11 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
23. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 11 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
33. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
34. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
35. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
36. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
37. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
38. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 11 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
44. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
46. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
47. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
48. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
49. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
50. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
51. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
52. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
54. createSegmentB : Substituted 11 with -11 → NO_COVERAGE
55. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
56. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
57. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
58. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
59. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
60. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
61. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
62. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
63. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
64. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
65. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
67. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
68. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
69. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
70. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
71. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
72. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
73. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
74. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
75. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
76. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
77. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
78. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
79. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
80. createSegmentB : Substituted 11 with 10 → NO_COVERAGE
81. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
82. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
83. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
84. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
85. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
86. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
87. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
88. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 11, 9, 7, 5, 3}); // rear |
|
759
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
760
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // top |
|
761
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 11 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 10 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 11 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 10 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 11 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 10 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 11 with -11 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 10 with -10 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 11 with 10 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 10 with 9 → NO_COVERAGE
|
seg.addFace(new int[] {8, 9, 11, 10}, "clip"); // clip bottom |
|
762
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 10 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 11 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 10 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 11 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 10 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 11 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 10 with -10 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 11 with -11 → NO_COVERAGE
38. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 10 with 11 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 11 with 12 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 10 with 9 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 11 with 10 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {10, 11, 1, 0}); // bottom |
|
763
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
764
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
765
|
|
} |
|
766
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
767
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
768
|
|
} |
|
769
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
770
|
|
} |
|
771
|
|
} |
|
772
|
7
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
773
|
1
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
774
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
775
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
776
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
777
|
16
1. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentB : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentB : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentB : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentB : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
778
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
779
|
23
1. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
780
|
22
1. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
781
|
22
1. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
782
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
783
|
21
1. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentB : Negated double array field → NO_COVERAGE
4. createSegmentB : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentB : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentB : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentB : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentB : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentB : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentB : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentB : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentB : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentB : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentB : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentB : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentB : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentB : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
784
|
73
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
785
|
74
1. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
786
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
787
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // top |
|
788
|
61
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentB : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentB : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentB : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentB : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}, "clip"); // clip bottom |
|
789
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 9 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 8 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 9 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 8 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 9 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 8 with -8 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 9 with -9 → NO_COVERAGE
38. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 8 with 9 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 9 with 10 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 8 with 7 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 9 with 8 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {8, 9, 1, 0}); // bottom |
|
790
|
13
1. createSegmentB : negated conditional → NO_COVERAGE
2. createSegmentB : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentB : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentB : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentB : equal to less than → NO_COVERAGE
6. createSegmentB : equal to less or equal → NO_COVERAGE
7. createSegmentB : equal to greater than → NO_COVERAGE
8. createSegmentB : equal to greater or equal → NO_COVERAGE
9. createSegmentB : equal to not equal → NO_COVERAGE
10. createSegmentB : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentB : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentB : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentB : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
791
|
58
1. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentB : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentB : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentB : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentB : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentB : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentB : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentB : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentB : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentB : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentB : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentB : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentB : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentB : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentB : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentB : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentB : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentB : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentB : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentB : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentB : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentB : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentB : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentB : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
792
|
|
} |
|
793
|
|
// there is no closing face in this case |
|
794
|
2
1. createSegmentB : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE
2. createSegmentB : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
795
|
|
} |
|
796
|
|
|
|
797
|
|
/** |
|
798
|
|
* Creates a segment for the case where the line end spans the entire axis |
|
799
|
|
* range at the left side of the chart. |
|
800
|
|
* |
|
801
|
|
* @param x0 |
|
802
|
|
* @param x1 |
|
803
|
|
* @param xpts |
|
804
|
|
* @param y0b |
|
805
|
|
* @param y0t |
|
806
|
|
* @param y1b |
|
807
|
|
* @param y1t |
|
808
|
|
* @param wmin |
|
809
|
|
* @param wmax |
|
810
|
|
* @param zf |
|
811
|
|
* @param zb |
|
812
|
|
* @param color |
|
813
|
|
* @param clipColor |
|
814
|
|
* @param openingFace |
|
815
|
|
* @param closingFace |
|
816
|
|
* |
|
817
|
|
* @return A segment. |
|
818
|
|
*/ |
|
819
|
|
private Object3D createSegmentC(double x0, double x1, double[] xpts, |
|
820
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
821
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
822
|
|
boolean openingFace, boolean closingFace) { |
|
823
|
|
|
|
824
|
|
// the first 4 vertices and the opening face are common to all |
|
825
|
|
// segments in this case |
|
826
|
7
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
827
|
1
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
828
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
829
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
830
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zf); |
|
831
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmax, zb); |
|
832
|
13
1. createSegmentC : negated conditional → NO_COVERAGE
2. createSegmentC : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentC : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentC : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentC : equal to less than → NO_COVERAGE
6. createSegmentC : equal to less or equal → NO_COVERAGE
7. createSegmentC : equal to greater than → NO_COVERAGE
8. createSegmentC : equal to greater or equal → NO_COVERAGE
9. createSegmentC : equal to not equal → NO_COVERAGE
10. createSegmentC : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentC : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentC : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentC : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
833
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
834
|
|
} |
|
835
|
|
|
|
836
|
19
1. createSegmentC : changed conditional boundary → NO_COVERAGE
2. createSegmentC : negated conditional → NO_COVERAGE
3. createSegmentC : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentC : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentC : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentC : Less than to less or equal → NO_COVERAGE
8. createSegmentC : Less than to greater than → NO_COVERAGE
9. createSegmentC : Less than to greater or equal → NO_COVERAGE
10. createSegmentC : Less than to equal → NO_COVERAGE
11. createSegmentC : Less than to not equal → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentC : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b >= wmax) { |
|
837
|
23
1. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
838
|
23
1. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
839
|
21
1. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
840
|
21
1. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
841
|
59
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
842
|
60
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
843
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
844
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // bottom |
|
845
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {7, 1, 0, 6}, "clip"); // bottom clip |
|
846
|
2
1. createSegmentC : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
847
|
|
} |
|
848
|
19
1. createSegmentC : changed conditional boundary → NO_COVERAGE
2. createSegmentC : negated conditional → NO_COVERAGE
3. createSegmentC : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentC : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentC : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentC : Less or equal to less than → NO_COVERAGE
8. createSegmentC : Less or equal to greater than → NO_COVERAGE
9. createSegmentC : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentC : Less or equal to equal → NO_COVERAGE
11. createSegmentC : Less or equal to not equal → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentC : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
849
|
19
1. createSegmentC : changed conditional boundary → NO_COVERAGE
2. createSegmentC : negated conditional → NO_COVERAGE
3. createSegmentC : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentC : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentC : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentC : Less than to less or equal → NO_COVERAGE
8. createSegmentC : Less than to greater than → NO_COVERAGE
9. createSegmentC : Less than to greater or equal → NO_COVERAGE
10. createSegmentC : Less than to equal → NO_COVERAGE
11. createSegmentC : Less than to not equal → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
850
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
851
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
852
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
853
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
854
|
21
1. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
855
|
21
1. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
856
|
73
1. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
857
|
74
1. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
858
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // top clip |
|
859
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); // bottom |
|
860
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {8, 9, 1, 0}, "clip"); // clip bottom |
|
861
|
13
1. createSegmentC : negated conditional → NO_COVERAGE
2. createSegmentC : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentC : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentC : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentC : equal to less than → NO_COVERAGE
6. createSegmentC : equal to less or equal → NO_COVERAGE
7. createSegmentC : equal to greater than → NO_COVERAGE
8. createSegmentC : equal to greater or equal → NO_COVERAGE
9. createSegmentC : equal to not equal → NO_COVERAGE
10. createSegmentC : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentC : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentC : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentC : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
862
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
863
|
|
} |
|
864
|
2
1. createSegmentC : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
865
|
|
} else { |
|
866
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
867
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
868
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
869
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
870
|
59
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
871
|
60
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
872
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
873
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // bottom |
|
874
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {7, 1, 0, 6}, "clip"); // bottom clip |
|
875
|
2
1. createSegmentC : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
876
|
|
} |
|
877
|
|
} |
|
878
|
19
1. createSegmentC : changed conditional boundary → NO_COVERAGE
2. createSegmentC : negated conditional → NO_COVERAGE
3. createSegmentC : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentC : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentC : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentC : Less or equal to less than → NO_COVERAGE
8. createSegmentC : Less or equal to greater than → NO_COVERAGE
9. createSegmentC : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentC : Less or equal to equal → NO_COVERAGE
11. createSegmentC : Less or equal to not equal → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1t > wmin) { |
|
879
|
19
1. createSegmentC : changed conditional boundary → NO_COVERAGE
2. createSegmentC : negated conditional → NO_COVERAGE
3. createSegmentC : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentC : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentC : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentC : Less than to less or equal → NO_COVERAGE
8. createSegmentC : Less than to greater than → NO_COVERAGE
9. createSegmentC : Less than to greater or equal → NO_COVERAGE
10. createSegmentC : Less than to equal → NO_COVERAGE
11. createSegmentC : Less than to not equal → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentC : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
880
|
1
1. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return null; // in practice I don't think this case |
|
881
|
|
// can occur |
|
882
|
|
} else { |
|
883
|
23
1. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
884
|
23
1. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
885
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
886
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
887
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
888
|
16
1. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentC : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentC : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentC : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentC : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
889
|
73
1. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
890
|
74
1. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
891
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
892
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // top |
|
893
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {9, 1, 0, 8}, "clip"); // clip bottom |
|
894
|
13
1. createSegmentC : negated conditional → NO_COVERAGE
2. createSegmentC : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentC : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentC : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentC : equal to less than → NO_COVERAGE
6. createSegmentC : equal to less or equal → NO_COVERAGE
7. createSegmentC : equal to greater than → NO_COVERAGE
8. createSegmentC : equal to greater or equal → NO_COVERAGE
9. createSegmentC : equal to not equal → NO_COVERAGE
10. createSegmentC : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentC : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentC : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentC : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
895
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
896
|
|
} |
|
897
|
2
1. createSegmentC : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
898
|
|
} |
|
899
|
|
} |
|
900
|
23
1. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
901
|
23
1. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
902
|
22
1. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
903
|
22
1. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentC : Negated double array field → NO_COVERAGE
4. createSegmentC : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentC : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentC : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentC : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentC : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentC : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentC : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentC : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentC : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentC : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentC : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentC : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentC : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentC : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
904
|
59
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
905
|
60
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
906
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
907
|
61
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentC : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // top |
|
908
|
58
1. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentC : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentC : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentC : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentC : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentC : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentC : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentC : Substituted 6 with 0 → NO_COVERAGE
20. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentC : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentC : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentC : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentC : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentC : Substituted 6 with -1 → NO_COVERAGE
28. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentC : Substituted 7 with -1 → NO_COVERAGE
30. createSegmentC : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentC : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentC : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentC : Substituted 6 with -6 → NO_COVERAGE
36. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentC : Substituted 7 with -7 → NO_COVERAGE
38. createSegmentC : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentC : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentC : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentC : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentC : Substituted 6 with 7 → NO_COVERAGE
44. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentC : Substituted 7 with 8 → NO_COVERAGE
46. createSegmentC : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentC : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentC : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentC : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentC : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentC : Substituted 6 with 5 → NO_COVERAGE
53. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentC : Substituted 7 with 6 → NO_COVERAGE
55. createSegmentC : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentC : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentC : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentC : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 1, 0}, "clip"); // clip bottom |
|
909
|
2
1. createSegmentC : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE
2. createSegmentC : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
910
|
|
} |
|
911
|
|
|
|
912
|
|
/** |
|
913
|
|
* Creates a segment for the case where the segment is contained within |
|
914
|
|
* the axis range at the left side. |
|
915
|
|
* |
|
916
|
|
* @param x0 |
|
917
|
|
* @param x1 |
|
918
|
|
* @param xpts |
|
919
|
|
* @param y0b |
|
920
|
|
* @param y0t |
|
921
|
|
* @param y1b |
|
922
|
|
* @param y1t |
|
923
|
|
* @param wmin |
|
924
|
|
* @param wmax |
|
925
|
|
* @param zf |
|
926
|
|
* @param zb |
|
927
|
|
* @param color |
|
928
|
|
* @param clipColor |
|
929
|
|
* @param openingFace |
|
930
|
|
* @param closingFace |
|
931
|
|
* |
|
932
|
|
* @return A segment. |
|
933
|
|
*/ |
|
934
|
|
private Object3D createSegmentD(double x0, double x1, double[] xpts, |
|
935
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
936
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
937
|
|
boolean openingFace, boolean closingFace) { |
|
938
|
|
|
|
939
|
7
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
940
|
1
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
941
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zf); |
|
942
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 6 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 6 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 6 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 6 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 6 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0b, zb); |
|
943
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
944
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
945
|
19
1. createSegmentD : changed conditional boundary → NO_COVERAGE
2. createSegmentD : negated conditional → NO_COVERAGE
3. createSegmentD : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentD : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentD : Less than to less or equal → NO_COVERAGE
8. createSegmentD : Less than to greater than → NO_COVERAGE
9. createSegmentD : Less than to greater or equal → NO_COVERAGE
10. createSegmentD : Less than to equal → NO_COVERAGE
11. createSegmentD : Less than to not equal → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b >= wmax) { |
|
946
|
23
1. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
947
|
23
1. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
948
|
23
1. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
949
|
23
1. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
950
|
59
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
951
|
60
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
952
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
953
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip top |
|
954
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}); // bottom |
|
955
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
956
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
957
|
|
} |
|
958
|
|
// there is no closing face in this case |
|
959
|
2
1. createSegmentD : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
960
|
|
} |
|
961
|
19
1. createSegmentD : changed conditional boundary → NO_COVERAGE
2. createSegmentD : negated conditional → NO_COVERAGE
3. createSegmentD : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentD : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentD : Less or equal to less than → NO_COVERAGE
8. createSegmentD : Less or equal to greater than → NO_COVERAGE
9. createSegmentD : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentD : Less or equal to equal → NO_COVERAGE
11. createSegmentD : Less or equal to not equal → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
962
|
19
1. createSegmentD : changed conditional boundary → NO_COVERAGE
2. createSegmentD : negated conditional → NO_COVERAGE
3. createSegmentD : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentD : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentD : Less than to less or equal → NO_COVERAGE
8. createSegmentD : Less than to greater than → NO_COVERAGE
9. createSegmentD : Less than to greater or equal → NO_COVERAGE
10. createSegmentD : Less than to equal → NO_COVERAGE
11. createSegmentD : Less than to not equal → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
963
|
23
1. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
964
|
23
1. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
965
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
966
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
967
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
968
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
969
|
73
1. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
970
|
74
1. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
971
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
972
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip top |
|
973
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}); |
|
974
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
975
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
976
|
|
} |
|
977
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
978
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
979
|
|
} |
|
980
|
2
1. createSegmentD : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
981
|
|
} else { |
|
982
|
1
1. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return null; // this case should not be possible |
|
983
|
|
} |
|
984
|
|
} |
|
985
|
19
1. createSegmentD : changed conditional boundary → NO_COVERAGE
2. createSegmentD : negated conditional → NO_COVERAGE
3. createSegmentD : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentD : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentD : Less or equal to less than → NO_COVERAGE
8. createSegmentD : Less or equal to greater than → NO_COVERAGE
9. createSegmentD : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentD : Less or equal to equal → NO_COVERAGE
11. createSegmentD : Less or equal to not equal → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1t > wmin) { |
|
986
|
19
1. createSegmentD : changed conditional boundary → NO_COVERAGE
2. createSegmentD : negated conditional → NO_COVERAGE
3. createSegmentD : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentD : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentD : Less than to less or equal → NO_COVERAGE
8. createSegmentD : Less than to greater than → NO_COVERAGE
9. createSegmentD : Less than to greater or equal → NO_COVERAGE
10. createSegmentD : Less than to equal → NO_COVERAGE
11. createSegmentD : Less than to not equal → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
987
|
|
// this is the regular segment, no clipping |
|
988
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
989
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
990
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
991
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
992
|
59
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
993
|
60
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
994
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
995
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}); // bottom |
|
996
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
997
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
998
|
|
} |
|
999
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1000
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1001
|
|
} |
|
1002
|
2
1. createSegmentD : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1003
|
|
} else { |
|
1004
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
1005
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
1006
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
1007
|
16
1. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentD : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentD : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentD : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentD : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
1008
|
21
1. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1009
|
21
1. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1010
|
73
1. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
1011
|
74
1. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
1012
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1013
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}); // bottom |
|
1014
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}, "clip"); // clip bottom |
|
1015
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1016
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1017
|
|
} |
|
1018
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1019
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1020
|
|
} |
|
1021
|
2
1. createSegmentD : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1022
|
|
} |
|
1023
|
|
} else { |
|
1024
|
22
1. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1025
|
22
1. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1026
|
21
1. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1027
|
21
1. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentD : Negated double array field → NO_COVERAGE
4. createSegmentD : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentD : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentD : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentD : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentD : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentD : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentD : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentD : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentD : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentD : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentD : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentD : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentD : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentD : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1028
|
59
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
1029
|
60
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
1030
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1031
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}); // bottom |
|
1032
|
61
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentD : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentD : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentD : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentD : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentD : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentD : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentD : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentD : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentD : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip bottom |
|
1033
|
13
1. createSegmentD : negated conditional → NO_COVERAGE
2. createSegmentD : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentD : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentD : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentD : equal to less than → NO_COVERAGE
6. createSegmentD : equal to less or equal → NO_COVERAGE
7. createSegmentD : equal to greater than → NO_COVERAGE
8. createSegmentD : equal to greater or equal → NO_COVERAGE
9. createSegmentD : equal to not equal → NO_COVERAGE
10. createSegmentD : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentD : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentD : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentD : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1034
|
58
1. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentD : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentD : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentD : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentD : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentD : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentD : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentD : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentD : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentD : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentD : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentD : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentD : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentD : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentD : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentD : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentD : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentD : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentD : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentD : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentD : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentD : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentD : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentD : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1035
|
|
} |
|
1036
|
|
// there is no closing face in this case |
|
1037
|
2
1. createSegmentD : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE
2. createSegmentD : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1038
|
|
} |
|
1039
|
|
} |
|
1040
|
|
|
|
1041
|
|
/** |
|
1042
|
|
* Returns a segment for the case where the line height spans the lower |
|
1043
|
|
* bound of the axis range at the left side of the chart. |
|
1044
|
|
* |
|
1045
|
|
* @param x0 |
|
1046
|
|
* @param x1 |
|
1047
|
|
* @param xpts |
|
1048
|
|
* @param y0b |
|
1049
|
|
* @param y0t |
|
1050
|
|
* @param y1b |
|
1051
|
|
* @param y1t |
|
1052
|
|
* @param wmin |
|
1053
|
|
* @param wmax |
|
1054
|
|
* @param zf |
|
1055
|
|
* @param zb |
|
1056
|
|
* @param color |
|
1057
|
|
* @param clipColor |
|
1058
|
|
* @param openingFace |
|
1059
|
|
* @param closingFace |
|
1060
|
|
* |
|
1061
|
|
* @return The segment. |
|
1062
|
|
*/ |
|
1063
|
|
private Object3D createSegmentE(double x0, double x1, double[] xpts, |
|
1064
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
1065
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
1066
|
|
boolean openingFace, boolean closingFace) { |
|
1067
|
19
1. createSegmentE : changed conditional boundary → NO_COVERAGE
2. createSegmentE : negated conditional → NO_COVERAGE
3. createSegmentE : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentE : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentE : Less or equal to less than → NO_COVERAGE
8. createSegmentE : Less or equal to greater than → NO_COVERAGE
9. createSegmentE : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentE : Less or equal to equal → NO_COVERAGE
11. createSegmentE : Less or equal to not equal → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b > wmax) { |
|
1068
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1069
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1070
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1071
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1072
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1073
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1074
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1075
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1076
|
23
1. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
1077
|
23
1. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
1078
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1079
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1080
|
73
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
1081
|
74
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
1082
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1083
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}, "clip"); // clip top |
|
1084
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); // bottom |
|
1085
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}, "clip"); // clip bottom |
|
1086
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1087
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1088
|
|
} |
|
1089
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1090
|
|
} |
|
1091
|
19
1. createSegmentE : changed conditional boundary → NO_COVERAGE
2. createSegmentE : negated conditional → NO_COVERAGE
3. createSegmentE : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentE : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentE : Less or equal to less than → NO_COVERAGE
8. createSegmentE : Less or equal to greater than → NO_COVERAGE
9. createSegmentE : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentE : Less or equal to equal → NO_COVERAGE
11. createSegmentE : Less or equal to not equal → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
1092
|
19
1. createSegmentE : changed conditional boundary → NO_COVERAGE
2. createSegmentE : negated conditional → NO_COVERAGE
3. createSegmentE : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentE : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentE : Less than to less or equal → NO_COVERAGE
8. createSegmentE : Less than to greater than → NO_COVERAGE
9. createSegmentE : Less than to greater or equal → NO_COVERAGE
10. createSegmentE : Less than to equal → NO_COVERAGE
11. createSegmentE : Less than to not equal → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
1093
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1094
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1095
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1096
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1097
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1098
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1099
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1100
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1101
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
1102
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
1103
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
1104
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
1105
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1106
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1107
|
87
1. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
13. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
14. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
15. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
23. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
24. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
25. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
26. createSegmentE : Substituted 10 with 1 → NO_COVERAGE
27. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
33. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
34. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
35. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
36. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
37. createSegmentE : Substituted 10 with 0 → NO_COVERAGE
38. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
44. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
46. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
47. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
48. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
49. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
50. createSegmentE : Substituted 10 with -1 → NO_COVERAGE
51. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
52. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
54. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
55. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
56. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
57. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
58. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
59. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
60. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
61. createSegmentE : Substituted 10 with -10 → NO_COVERAGE
62. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
63. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
64. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
65. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
66. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
67. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
68. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
69. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
70. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
71. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
72. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
73. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
74. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
75. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
76. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
77. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
78. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
79. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
80. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
81. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
82. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
83. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
84. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
85. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
86. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
87. createSegmentE : Substituted 10 with 9 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8, 10}); // front |
|
1108
|
88
1. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
12. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
13. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
14. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
15. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 11 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
23. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
26. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 11 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
33. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
34. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
35. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
36. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
37. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
38. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 11 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
44. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
46. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
47. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
48. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
49. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
50. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
51. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
52. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
54. createSegmentE : Substituted 11 with -11 → NO_COVERAGE
55. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
56. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
57. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
58. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
59. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
60. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
61. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
62. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
63. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
64. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
65. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
67. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
68. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
69. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
70. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
71. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
72. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
73. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
74. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
75. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
76. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
77. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
78. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
79. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
80. createSegmentE : Substituted 11 with 10 → NO_COVERAGE
81. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
82. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
83. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
84. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
85. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
86. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
87. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
88. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 11, 9, 7, 5, 3}); // rear |
|
1109
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1110
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {5, 7, 6, 4}, "clip"); // clip top |
|
1111
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 11 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 10 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 11 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 10 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 11 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 10 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 11 with -11 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 10 with -10 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 11 with 10 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 10 with 9 → NO_COVERAGE
|
seg.addFace(new int[] {8, 9, 11, 10}); // bottom |
|
1112
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 10 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 11 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 10 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 11 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 10 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 11 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 10 with -10 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 11 with -11 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 10 with 11 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 11 with 12 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 10 with 9 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 11 with 10 → NO_COVERAGE
|
seg.addFace(new int[] {1, 0, 10, 11}, "clip"); |
|
1113
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1114
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1115
|
|
} |
|
1116
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1117
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
1118
|
|
} |
|
1119
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1120
|
|
} else { |
|
1121
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1122
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1123
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1124
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1125
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1126
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1127
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1128
|
23
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1129
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
1130
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
1131
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
1132
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
1133
|
73
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
1134
|
74
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
1135
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1136
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {5, 7, 6, 4}, "clip"); // clip top |
|
1137
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}, "clip"); // clip bottom |
|
1138
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1139
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1140
|
|
} |
|
1141
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1142
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); |
|
1143
|
|
} |
|
1144
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1145
|
|
} |
|
1146
|
|
} |
|
1147
|
19
1. createSegmentE : changed conditional boundary → NO_COVERAGE
2. createSegmentE : negated conditional → NO_COVERAGE
3. createSegmentE : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentE : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentE : Less or equal to less than → NO_COVERAGE
8. createSegmentE : Less or equal to greater than → NO_COVERAGE
9. createSegmentE : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentE : Less or equal to equal → NO_COVERAGE
11. createSegmentE : Less or equal to not equal → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1t > wmin) { |
|
1148
|
19
1. createSegmentE : changed conditional boundary → NO_COVERAGE
2. createSegmentE : negated conditional → NO_COVERAGE
3. createSegmentE : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentE : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentE : Less than to less or equal → NO_COVERAGE
8. createSegmentE : Less than to greater than → NO_COVERAGE
9. createSegmentE : Less than to greater or equal → NO_COVERAGE
10. createSegmentE : Less than to equal → NO_COVERAGE
11. createSegmentE : Less than to not equal → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
1149
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1150
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1151
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1152
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1153
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1154
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1155
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
1156
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
1157
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
1158
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
1159
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1160
|
21
1. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1161
|
73
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
1162
|
74
1. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
1163
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1164
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); // bottom |
|
1165
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}, "clip"); // clip bottom |
|
1166
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1167
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1168
|
|
} |
|
1169
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1170
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1171
|
|
} |
|
1172
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1173
|
|
} else { |
|
1174
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1175
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1176
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1177
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1178
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1179
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1180
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
1181
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
1182
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
1183
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
1184
|
59
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
1185
|
60
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
1186
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1187
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}, "clip"); // clip bottom |
|
1188
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1189
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1190
|
|
} |
|
1191
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1192
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1193
|
|
} |
|
1194
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1195
|
|
} |
|
1196
|
|
} |
|
1197
|
7
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1198
|
1
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1199
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zf); |
|
1200
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, wmin, zb); |
|
1201
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zf); |
|
1202
|
16
1. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentE : Negated double local variable number 1 → NO_COVERAGE
3. createSegmentE : Negated double local variable number 8 → NO_COVERAGE
4. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentE : Incremented (a++) double local variable number 1 → NO_COVERAGE
6. createSegmentE : Incremented (a++) double local variable number 8 → NO_COVERAGE
7. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentE : Decremented (a--) double local variable number 1 → NO_COVERAGE
9. createSegmentE : Decremented (a--) double local variable number 8 → NO_COVERAGE
10. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentE : Incremented (++a) double local variable number 1 → NO_COVERAGE
12. createSegmentE : Incremented (++a) double local variable number 8 → NO_COVERAGE
13. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (--a) double local variable number 1 → NO_COVERAGE
15. createSegmentE : Decremented (--a) double local variable number 8 → NO_COVERAGE
16. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x0, y0t, zb); |
|
1203
|
22
1. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1204
|
22
1. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentE : Negated double array field → NO_COVERAGE
4. createSegmentE : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentE : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentE : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentE : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentE : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentE : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentE : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentE : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentE : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentE : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentE : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentE : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentE : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentE : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1205
|
45
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
16. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
18. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
23. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
25. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
31. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
32. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
33. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
34. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
37. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
38. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
39. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
40. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
45. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4}); // front |
|
1206
|
46
1. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
15. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
16. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
18. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
23. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
25. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
31. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
33. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
34. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
37. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
38. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
40. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
41. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
44. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
45. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 5, 3}); // rear |
|
1207
|
61
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); // top |
|
1208
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 5 with -5 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 5 with 6 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 5 with 4 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 4, 5, 1}, "clip"); // clip bottom |
|
1209
|
13
1. createSegmentE : negated conditional → NO_COVERAGE
2. createSegmentE : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentE : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentE : Negated integer local variable number 24 → NO_COVERAGE
5. createSegmentE : equal to less than → NO_COVERAGE
6. createSegmentE : equal to less or equal → NO_COVERAGE
7. createSegmentE : equal to greater than → NO_COVERAGE
8. createSegmentE : equal to greater or equal → NO_COVERAGE
9. createSegmentE : equal to not equal → NO_COVERAGE
10. createSegmentE : Incremented (a++) integer local variable number 24 → NO_COVERAGE
11. createSegmentE : Decremented (a--) integer local variable number 24 → NO_COVERAGE
12. createSegmentE : Incremented (++a) integer local variable number 24 → NO_COVERAGE
13. createSegmentE : Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
if (openingFace) { |
|
1210
|
58
1. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentE : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentE : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentE : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentE : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentE : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentE : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentE : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentE : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentE : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentE : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentE : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentE : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentE : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentE : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentE : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentE : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentE : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentE : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentE : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentE : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentE : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentE : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentE : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); |
|
1211
|
|
} |
|
1212
|
|
// there is no closing face in this case |
|
1213
|
2
1. createSegmentE : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE
2. createSegmentE : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1214
|
|
} |
|
1215
|
|
|
|
1216
|
|
/** |
|
1217
|
|
* Creates and returns a segment for the case where the line is completely |
|
1218
|
|
* below the axis range at the left side. |
|
1219
|
|
* |
|
1220
|
|
* @param x0 |
|
1221
|
|
* @param x1 |
|
1222
|
|
* @param xpts |
|
1223
|
|
* @param y0b |
|
1224
|
|
* @param y0t |
|
1225
|
|
* @param y1b |
|
1226
|
|
* @param y1t |
|
1227
|
|
* @param wmin |
|
1228
|
|
* @param wmax |
|
1229
|
|
* @param zf |
|
1230
|
|
* @param zb |
|
1231
|
|
* @param color |
|
1232
|
|
* @param clipColor |
|
1233
|
|
* @param openingFace ignored because there is no opening face in this |
|
1234
|
|
* case. |
|
1235
|
|
* @param closingFace |
|
1236
|
|
* |
|
1237
|
|
* @return A segment. |
|
1238
|
|
*/ |
|
1239
|
|
private Object3D createSegmentF(double x0, double x1, double[] xpts, |
|
1240
|
|
double y0b, double y0t, double y1b, double y1t, double wmin, |
|
1241
|
|
double wmax, double zf, double zb, Color color, Color clipColor, |
|
1242
|
|
boolean openingFace, boolean closingFace) { |
|
1243
|
|
|
|
1244
|
19
1. createSegmentF : changed conditional boundary → NO_COVERAGE
2. createSegmentF : negated conditional → NO_COVERAGE
3. createSegmentF : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentF : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentF : Less or equal to less than → NO_COVERAGE
8. createSegmentF : Less or equal to greater than → NO_COVERAGE
9. createSegmentF : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentF : Less or equal to equal → NO_COVERAGE
11. createSegmentF : Less or equal to not equal → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1b > wmax) { |
|
1245
|
7
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1246
|
1
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1247
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1248
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1249
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1250
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1251
|
23
1. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zf); |
|
1252
|
23
1. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
10. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
11. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[2], wmax, zb); |
|
1253
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1254
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1255
|
59
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
1256
|
60
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
1257
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // top |
|
1258
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
1259
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // bottom |
|
1260
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}, "clip"); // clip bottom |
|
1261
|
|
// there are no opening and closing faces for this case |
|
1262
|
2
1. createSegmentF : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
2. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1263
|
|
} |
|
1264
|
19
1. createSegmentF : changed conditional boundary → NO_COVERAGE
2. createSegmentF : negated conditional → NO_COVERAGE
3. createSegmentF : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentF : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
7. createSegmentF : Less or equal to less than → NO_COVERAGE
8. createSegmentF : Less or equal to greater than → NO_COVERAGE
9. createSegmentF : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentF : Less or equal to equal → NO_COVERAGE
11. createSegmentF : Less or equal to not equal → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
18. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
|
if (y1t > wmax) { |
|
1265
|
19
1. createSegmentF : changed conditional boundary → NO_COVERAGE
2. createSegmentF : negated conditional → NO_COVERAGE
3. createSegmentF : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentF : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentF : Less or equal to less than → NO_COVERAGE
8. createSegmentF : Less or equal to greater than → NO_COVERAGE
9. createSegmentF : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentF : Less or equal to equal → NO_COVERAGE
11. createSegmentF : Less or equal to not equal → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b > wmin) { |
|
1266
|
7
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1267
|
1
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1268
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1269
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1270
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1271
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1272
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
1273
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
1274
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
1275
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
1276
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1277
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1278
|
73
1. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
12. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
20. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
21. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
22. createSegmentF : Substituted 8 with 1 → NO_COVERAGE
23. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
28. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
30. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentF : Substituted 8 with 0 → NO_COVERAGE
32. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentF : Substituted 8 with -1 → NO_COVERAGE
43. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
47. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
49. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
50. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
51. createSegmentF : Substituted 8 with -8 → NO_COVERAGE
52. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
53. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
54. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
57. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
58. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
59. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
62. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
63. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
64. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
65. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
68. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
69. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
70. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
71. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
72. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
73. createSegmentF : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6, 8}); // front |
|
1279
|
74
1. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
10. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
12. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
13. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 9 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
21. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 9 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
28. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
29. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
30. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
31. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
32. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 9 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
40. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
43. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
44. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
46. createSegmentF : Substituted 9 with -9 → NO_COVERAGE
47. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
48. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
49. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
51. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
52. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
53. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
54. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
55. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
59. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
61. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
62. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
63. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
64. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
65. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
66. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
67. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
68. createSegmentF : Substituted 9 with 8 → NO_COVERAGE
69. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
70. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
71. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
72. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
73. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
74. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 9, 7, 5, 3}); // rear |
|
1280
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); //clip top |
|
1281
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // top |
|
1282
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 8 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 8 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 9 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 8 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 9 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 8 with -8 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 9 with -9 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 8 with 7 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 9 with 8 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 8, 9, 1}, "clip"); // clip bottom |
|
1283
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 9 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 8 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 9 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 8 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 9 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 8 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 9 with -9 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 8 with -8 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 9 with 10 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 8 with 9 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 9 with 8 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 8 with 7 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 9, 8}); // bottom |
|
1284
|
|
// there is no opening face in this case |
|
1285
|
13
1. createSegmentF : negated conditional → NO_COVERAGE
2. createSegmentF : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentF : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentF : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentF : equal to less than → NO_COVERAGE
6. createSegmentF : equal to less or equal → NO_COVERAGE
7. createSegmentF : equal to greater than → NO_COVERAGE
8. createSegmentF : equal to greater or equal → NO_COVERAGE
9. createSegmentF : equal to not equal → NO_COVERAGE
10. createSegmentF : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentF : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentF : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentF : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1286
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1287
|
|
} |
|
1288
|
2
1. createSegmentF : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
2. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1289
|
|
} else { |
|
1290
|
7
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1291
|
1
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1292
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1293
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1294
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zf); |
|
1295
|
23
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
10. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
11. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
14. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
17. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
20. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
23. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[3], wmax, zb); |
|
1296
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zf); |
|
1297
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 16 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 16 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 16 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 16 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 16 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmax, zb); |
|
1298
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
1299
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
1300
|
59
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
1301
|
60
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
1302
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // top |
|
1303
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}, "clip"); // clip top |
|
1304
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
38. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
40. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
|
seg.addFace(new int[] {6, 7, 1, 0}, "clip"); // clip bottom |
|
1305
|
13
1. createSegmentF : negated conditional → NO_COVERAGE
2. createSegmentF : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentF : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentF : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentF : equal to less than → NO_COVERAGE
6. createSegmentF : equal to less or equal → NO_COVERAGE
7. createSegmentF : equal to greater than → NO_COVERAGE
8. createSegmentF : equal to greater or equal → NO_COVERAGE
9. createSegmentF : equal to not equal → NO_COVERAGE
10. createSegmentF : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentF : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentF : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentF : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1306
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); |
|
1307
|
|
} |
|
1308
|
2
1. createSegmentF : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
2. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1309
|
|
} |
|
1310
|
|
} |
|
1311
|
19
1. createSegmentF : changed conditional boundary → NO_COVERAGE
2. createSegmentF : negated conditional → NO_COVERAGE
3. createSegmentF : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentF : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
6. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentF : Less or equal to less than → NO_COVERAGE
8. createSegmentF : Less or equal to greater than → NO_COVERAGE
9. createSegmentF : Less or equal to greater or equal → NO_COVERAGE
10. createSegmentF : Less or equal to equal → NO_COVERAGE
11. createSegmentF : Less or equal to not equal → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1t > wmin) { |
|
1312
|
19
1. createSegmentF : changed conditional boundary → NO_COVERAGE
2. createSegmentF : negated conditional → NO_COVERAGE
3. createSegmentF : removed conditional - replaced comparison check with false → NO_COVERAGE
4. createSegmentF : removed conditional - replaced comparison check with true → NO_COVERAGE
5. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
6. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
7. createSegmentF : Less than to less or equal → NO_COVERAGE
8. createSegmentF : Less than to greater than → NO_COVERAGE
9. createSegmentF : Less than to greater or equal → NO_COVERAGE
10. createSegmentF : Less than to equal → NO_COVERAGE
11. createSegmentF : Less than to not equal → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
|
if (y1b >= wmin) { |
|
1313
|
7
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1314
|
1
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1315
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1316
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1317
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
1318
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
1319
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zf); |
|
1320
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 10 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 10 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 10 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 10 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 10 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1b, zb); |
|
1321
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zf); |
|
1322
|
21
1. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
7. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
9. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
10. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
11. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
13. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
14. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
16. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
17. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
19. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
20. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[0], wmin, zb); |
|
1323
|
59
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
39. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
40. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
41. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
42. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
48. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
49. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
50. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
51. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
57. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
58. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
59. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4, 6}); // front |
|
1324
|
60
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
40. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
41. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
44. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
47. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
49. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
50. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
53. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
56. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
58. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
59. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 7, 5, 3}); // rear |
|
1325
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // top |
|
1326
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
|
seg.addFace(new int[] {4, 5, 7, 6}); // bottom |
|
1327
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 6 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 7 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 6 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 7 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 6 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 7 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 6 with -6 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 7 with -7 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 6 with 7 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 7 with 8 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 6 with 5 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 7 with 6 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 6, 7, 1}, "clip"); // clip bottom |
|
1328
|
13
1. createSegmentF : negated conditional → NO_COVERAGE
2. createSegmentF : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentF : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentF : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentF : equal to less than → NO_COVERAGE
6. createSegmentF : equal to less or equal → NO_COVERAGE
7. createSegmentF : equal to greater than → NO_COVERAGE
8. createSegmentF : equal to greater or equal → NO_COVERAGE
9. createSegmentF : equal to not equal → NO_COVERAGE
10. createSegmentF : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentF : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentF : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentF : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1329
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); |
|
1330
|
|
} |
|
1331
|
2
1. createSegmentF : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
2. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1332
|
|
} else { |
|
1333
|
7
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE
2. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
5. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
7. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
Object3D seg = new Object3D(color, true); |
|
1334
|
1
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
seg.setProperty(Object3D.COLOR_PREFIX + "clip", clipColor); |
|
1335
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zf); |
|
1336
|
22
1. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
2. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
3. createSegmentF : Negated double array field → NO_COVERAGE
4. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
5. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
6. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
7. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
8. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
10. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
11. createSegmentF : Incremented (a++) double array field → NO_COVERAGE
12. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (a--) double array field → NO_COVERAGE
15. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
17. createSegmentF : Incremented (++a) double array field → NO_COVERAGE
18. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
19. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
20. createSegmentF : Decremented (--a) double array field → NO_COVERAGE
21. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
22. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(xpts[1], wmin, zb); |
|
1337
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zf); |
|
1338
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 12 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 12 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 12 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 12 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 12 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, y1t, zb); |
|
1339
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 18 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 18 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 18 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 18 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 18 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zf); |
|
1340
|
16
1. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE
2. createSegmentF : Negated double local variable number 3 → NO_COVERAGE
3. createSegmentF : Negated double local variable number 14 → NO_COVERAGE
4. createSegmentF : Negated double local variable number 20 → NO_COVERAGE
5. createSegmentF : Incremented (a++) double local variable number 3 → NO_COVERAGE
6. createSegmentF : Incremented (a++) double local variable number 14 → NO_COVERAGE
7. createSegmentF : Incremented (a++) double local variable number 20 → NO_COVERAGE
8. createSegmentF : Decremented (a--) double local variable number 3 → NO_COVERAGE
9. createSegmentF : Decremented (a--) double local variable number 14 → NO_COVERAGE
10. createSegmentF : Decremented (a--) double local variable number 20 → NO_COVERAGE
11. createSegmentF : Incremented (++a) double local variable number 3 → NO_COVERAGE
12. createSegmentF : Incremented (++a) double local variable number 14 → NO_COVERAGE
13. createSegmentF : Incremented (++a) double local variable number 20 → NO_COVERAGE
14. createSegmentF : Decremented (--a) double local variable number 3 → NO_COVERAGE
15. createSegmentF : Decremented (--a) double local variable number 14 → NO_COVERAGE
16. createSegmentF : Decremented (--a) double local variable number 20 → NO_COVERAGE
|
seg.addVertex(x1, wmin, zb); |
|
1341
|
45
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
8. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
16. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
18. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
23. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
25. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
31. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
32. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
33. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
34. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
37. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
38. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
39. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
40. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
45. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {0, 2, 4}); // front |
|
1342
|
46
1. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
9. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
10. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
11. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
15. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
16. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
17. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
18. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
21. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
22. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
23. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
24. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
25. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
31. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
33. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
34. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
35. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
36. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
37. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
38. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
40. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
41. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
42. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
43. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
44. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
45. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
|
seg.addFace(new int[] {1, 5, 3}); // rear |
|
1343
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
|
seg.addFace(new int[] {0, 1, 3, 2}); // top |
|
1344
|
58
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
19. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
26. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
27. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
35. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
41. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
42. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
43. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
44. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
45. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
50. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
51. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
52. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
53. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
54. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
|
seg.addFace(new int[] {0, 4, 5, 1}, "clip"); // clip bottom |
|
1345
|
|
// there is no opening face in this case |
|
1346
|
13
1. createSegmentF : negated conditional → NO_COVERAGE
2. createSegmentF : removed conditional - replaced equality check with false → NO_COVERAGE
3. createSegmentF : removed conditional - replaced equality check with true → NO_COVERAGE
4. createSegmentF : Negated integer local variable number 25 → NO_COVERAGE
5. createSegmentF : equal to less than → NO_COVERAGE
6. createSegmentF : equal to less or equal → NO_COVERAGE
7. createSegmentF : equal to greater than → NO_COVERAGE
8. createSegmentF : equal to greater or equal → NO_COVERAGE
9. createSegmentF : equal to not equal → NO_COVERAGE
10. createSegmentF : Incremented (a++) integer local variable number 25 → NO_COVERAGE
11. createSegmentF : Decremented (a--) integer local variable number 25 → NO_COVERAGE
12. createSegmentF : Incremented (++a) integer local variable number 25 → NO_COVERAGE
13. createSegmentF : Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
if (closingFace) { |
|
1347
|
61
1. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
2. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
3. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
4. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
5. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
6. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
7. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
8. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
9. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
10. createSegmentF : removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE
11. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
12. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
13. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
14. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
15. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
16. createSegmentF : Substituted 5 with 1 → NO_COVERAGE
17. createSegmentF : Substituted 3 with 1 → NO_COVERAGE
18. createSegmentF : Substituted 4 with 1 → NO_COVERAGE
19. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
20. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
21. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
22. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
23. createSegmentF : Substituted 2 with 0 → NO_COVERAGE
24. createSegmentF : Substituted 5 with 0 → NO_COVERAGE
25. createSegmentF : Substituted 3 with 0 → NO_COVERAGE
26. createSegmentF : Substituted 4 with 0 → NO_COVERAGE
27. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
28. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
29. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
30. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
31. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
32. createSegmentF : Substituted 2 with -1 → NO_COVERAGE
33. createSegmentF : Substituted 5 with -1 → NO_COVERAGE
34. createSegmentF : Substituted 3 with -1 → NO_COVERAGE
35. createSegmentF : Substituted 4 with -1 → NO_COVERAGE
36. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
37. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
38. createSegmentF : Substituted 1 with -1 → NO_COVERAGE
39. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
40. createSegmentF : Substituted 2 with -2 → NO_COVERAGE
41. createSegmentF : Substituted 5 with -5 → NO_COVERAGE
42. createSegmentF : Substituted 3 with -3 → NO_COVERAGE
43. createSegmentF : Substituted 4 with -4 → NO_COVERAGE
44. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
45. createSegmentF : Substituted 0 with 1 → NO_COVERAGE
46. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
47. createSegmentF : Substituted 1 with 2 → NO_COVERAGE
48. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
49. createSegmentF : Substituted 2 with 3 → NO_COVERAGE
50. createSegmentF : Substituted 5 with 6 → NO_COVERAGE
51. createSegmentF : Substituted 3 with 4 → NO_COVERAGE
52. createSegmentF : Substituted 4 with 5 → NO_COVERAGE
53. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
54. createSegmentF : Substituted 0 with -1 → NO_COVERAGE
55. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
56. createSegmentF : Substituted 1 with 0 → NO_COVERAGE
57. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
58. createSegmentF : Substituted 2 with 1 → NO_COVERAGE
59. createSegmentF : Substituted 5 with 4 → NO_COVERAGE
60. createSegmentF : Substituted 3 with 2 → NO_COVERAGE
61. createSegmentF : Substituted 4 with 3 → NO_COVERAGE
|
seg.addFace(new int[] {2, 3, 5, 4}); |
|
1348
|
|
} |
|
1349
|
2
1. createSegmentF : replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE
2. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return seg; |
|
1350
|
|
} |
|
1351
|
|
} |
|
1352
|
1
1. createSegmentF : mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return null; // nothing to see |
|
1353
|
|
} |
|
1354
|
|
|
|
1355
|
|
/** |
|
1356
|
|
* Tests this renderer for equality with an arbitrary object. |
|
1357
|
|
* |
|
1358
|
|
* @param obj the object ({@code null} not permitted). |
|
1359
|
|
* |
|
1360
|
|
* @return A boolean. |
|
1361
|
|
*/ |
|
1362
|
|
@Override |
|
1363
|
|
public boolean equals(Object obj) { |
|
1364
|
3
1. equals : negated conditional → KILLED
2. equals : removed conditional - replaced equality check with true → KILLED
3. equals : not equal to equal → KILLED
|
if (obj == this) { |
|
1365
|
8
1. equals : replaced boolean return with false for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → NO_COVERAGE
2. equals : Substituted 1 with 0 → NO_COVERAGE
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
4. equals : Substituted 1 with 0 → NO_COVERAGE
5. equals : Substituted 1 with -1 → NO_COVERAGE
6. equals : Substituted 1 with -1 → NO_COVERAGE
7. equals : Substituted 1 with 2 → NO_COVERAGE
8. equals : Substituted 1 with 0 → NO_COVERAGE
|
return true; |
|
1366
|
|
} |
|
1367
|
8
1. equals : not equal to greater than → SURVIVED
2. equals : negated conditional → KILLED
3. equals : removed conditional - replaced equality check with false → KILLED
4. equals : removed conditional - replaced equality check with true → KILLED
5. equals : not equal to less than → KILLED
6. equals : not equal to less or equal → KILLED
7. equals : not equal to greater or equal → KILLED
8. equals : not equal to equal → KILLED
|
if (!(obj instanceof LineRenderer3D)) { |
|
1368
|
7
1. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
2. equals : Substituted 0 with 1 → KILLED
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. equals : Substituted 0 with 1 → KILLED
5. equals : Substituted 0 with -1 → KILLED
6. equals : Substituted 0 with 1 → KILLED
7. equals : Substituted 0 with -1 → KILLED
|
return false; |
|
1369
|
|
} |
|
1370
|
|
LineRenderer3D that = (LineRenderer3D) obj; |
|
1371
|
18
1. equals : equal to less or equal → SURVIVED
2. equals : negated conditional → KILLED
3. equals : removed conditional - replaced equality check with false → KILLED
4. equals : removed conditional - replaced equality check with true → KILLED
5. equals : Negated double field lineWidth → KILLED
6. equals : Negated double field lineWidth → KILLED
7. equals : equal to less than → KILLED
8. equals : equal to greater than → KILLED
9. equals : equal to greater or equal → KILLED
10. equals : equal to not equal → KILLED
11. equals : Incremented (a++) double field lineWidth → KILLED
12. equals : Incremented (a++) double field lineWidth → KILLED
13. equals : Decremented (a--) double field lineWidth → KILLED
14. equals : Decremented (a--) double field lineWidth → KILLED
15. equals : Incremented (++a) double field lineWidth → KILLED
16. equals : Incremented (++a) double field lineWidth → KILLED
17. equals : Decremented (--a) double field → KILLED
18. equals : Decremented (--a) double field → KILLED
|
if (this.lineWidth != that.lineWidth) { |
|
1372
|
7
1. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
2. equals : Substituted 0 with 1 → KILLED
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. equals : Substituted 0 with 1 → KILLED
5. equals : Substituted 0 with -1 → KILLED
6. equals : Substituted 0 with 1 → KILLED
7. equals : Substituted 0 with -1 → KILLED
|
return false; |
|
1373
|
|
} |
|
1374
|
18
1. equals : equal to less or equal → SURVIVED
2. equals : negated conditional → KILLED
3. equals : removed conditional - replaced equality check with false → KILLED
4. equals : removed conditional - replaced equality check with true → KILLED
5. equals : Negated double field lineHeight → KILLED
6. equals : Negated double field lineHeight → KILLED
7. equals : equal to less than → KILLED
8. equals : equal to greater than → KILLED
9. equals : equal to greater or equal → KILLED
10. equals : equal to not equal → KILLED
11. equals : Incremented (a++) double field lineHeight → KILLED
12. equals : Incremented (a++) double field lineHeight → KILLED
13. equals : Decremented (a--) double field lineHeight → KILLED
14. equals : Decremented (a--) double field lineHeight → KILLED
15. equals : Incremented (++a) double field lineHeight → KILLED
16. equals : Incremented (++a) double field lineHeight → KILLED
17. equals : Decremented (--a) double field → KILLED
18. equals : Decremented (--a) double field → KILLED
|
if (this.lineHeight != that.lineHeight) { |
|
1375
|
7
1. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
2. equals : Substituted 0 with 1 → KILLED
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. equals : Substituted 0 with 1 → KILLED
5. equals : Substituted 0 with -1 → KILLED
6. equals : Substituted 0 with 1 → KILLED
7. equals : Substituted 0 with -1 → KILLED
|
return false; |
|
1376
|
|
} |
|
1377
|
18
1. equals : removed conditional - replaced equality check with false → SURVIVED
2. equals : equal to less or equal → SURVIVED
3. equals : equal to greater or equal → SURVIVED
4. equals : negated conditional → KILLED
5. equals : removed conditional - replaced equality check with true → KILLED
6. equals : Negated double field isolatedItemWidthPercent → KILLED
7. equals : Negated double field isolatedItemWidthPercent → KILLED
8. equals : equal to less than → KILLED
9. equals : equal to greater than → KILLED
10. equals : equal to not equal → KILLED
11. equals : Incremented (a++) double field isolatedItemWidthPercent → KILLED
12. equals : Incremented (a++) double field isolatedItemWidthPercent → KILLED
13. equals : Decremented (a--) double field isolatedItemWidthPercent → KILLED
14. equals : Decremented (a--) double field isolatedItemWidthPercent → KILLED
15. equals : Incremented (++a) double field isolatedItemWidthPercent → KILLED
16. equals : Incremented (++a) double field isolatedItemWidthPercent → KILLED
17. equals : Decremented (--a) double field → KILLED
18. equals : Decremented (--a) double field → KILLED
|
if (this.isolatedItemWidthPercent != that.isolatedItemWidthPercent) { |
|
1378
|
7
1. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → NO_COVERAGE
2. equals : Substituted 0 with 1 → NO_COVERAGE
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
4. equals : Substituted 0 with 1 → NO_COVERAGE
5. equals : Substituted 0 with -1 → NO_COVERAGE
6. equals : Substituted 0 with 1 → NO_COVERAGE
7. equals : Substituted 0 with -1 → NO_COVERAGE
|
return false; |
|
1379
|
|
} |
|
1380
|
9
1. equals : not equal to greater than → SURVIVED
2. equals : negated conditional → KILLED
3. equals : removed call to org/jfree/chart3d/internal/ObjectUtils::equals → KILLED
4. equals : removed conditional - replaced equality check with false → KILLED
5. equals : removed conditional - replaced equality check with true → KILLED
6. equals : not equal to less than → KILLED
7. equals : not equal to less or equal → KILLED
8. equals : not equal to greater or equal → KILLED
9. equals : not equal to equal → KILLED
|
if (!ObjectUtils.equals(this.clipColorSource, that.clipColorSource)) { |
|
1381
|
7
1. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
2. equals : Substituted 0 with 1 → KILLED
3. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. equals : Substituted 0 with 1 → KILLED
5. equals : Substituted 0 with -1 → KILLED
6. equals : Substituted 0 with 1 → KILLED
7. equals : Substituted 0 with -1 → KILLED
|
return false; |
|
1382
|
|
} |
|
1383
|
4
1. equals : replaced boolean return with false for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
2. equals : replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED
3. equals : removed call to org/jfree/chart3d/renderer/category/AbstractCategoryRenderer3D::equals → KILLED
4. equals : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return super.equals(obj); |
|
1384
|
|
} |
|
1385
|
|
} |
|
1386
|
|
|
| | Mutations |
| 104 |
|
1.1 Location : Killed by : none Substituted 0.4 with 1.0 → SURVIVED 2.2 Location : Killed by : none Removed assignment to member variable lineWidth → SURVIVED 3.3 Location : Killed by : none Substituted 0.4 with 1.0 → SURVIVED 4.4 Location : Killed by : none Substituted 0.4 with 0.0 → SURVIVED 5.5 Location : Killed by : none Substituted 0.4 with -1.0 → SURVIVED 6.6 Location : Killed by : none Substituted 0.4 with -0.4 → SURVIVED 7.7 Location : Killed by : none Substituted 0.4 with 1.4 → SURVIVED 8.8 Location : Killed by : none Substituted 0.4 with -0.6 → SURVIVED
|
| 105 |
|
1.1 Location : Killed by : none Substituted 0.2 with 1.0 → SURVIVED 2.2 Location : Killed by : none Removed assignment to member variable lineHeight → SURVIVED 3.3 Location : Killed by : none Substituted 0.2 with 1.0 → SURVIVED 4.4 Location : Killed by : none Substituted 0.2 with 0.0 → SURVIVED 5.5 Location : Killed by : none Substituted 0.2 with -1.0 → SURVIVED 6.6 Location : Killed by : none Substituted 0.2 with -0.2 → SURVIVED 7.7 Location : Killed by : none Substituted 0.2 with 1.2 → SURVIVED 8.8 Location : Killed by : none Substituted 0.2 with -0.8 → SURVIVED
|
| 106 |
|
1.1 Location : Killed by : none Substituted 0.25 with 1.0 → SURVIVED 2.2 Location : Killed by : none Removed assignment to member variable isolatedItemWidthPercent → SURVIVED 3.3 Location : Killed by : none Substituted 0.25 with 1.0 → SURVIVED 4.4 Location : Killed by : none Substituted 0.25 with 0.0 → SURVIVED 5.5 Location : Killed by : none Substituted 0.25 with -1.0 → SURVIVED 6.6 Location : Killed by : none Substituted 0.25 with -0.25 → SURVIVED 7.7 Location : Killed by : none Substituted 0.25 with 1.25 → SURVIVED 8.8 Location : Killed by : none Substituted 0.25 with -0.75 → SURVIVED
|
| 107 |
|
1.1 Location : Killed by : none removed call to org/jfree/chart3d/renderer/category/StandardCategoryColorSource::<init> → SURVIVED 2.2 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with 0 → KILLED 3.3 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 4.4 Location : Killed by : none Removed assignment to member variable clipColorSource → SURVIVED 5.5 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 6.6 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with 0 → KILLED 7.7 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with -1 → KILLED 8.8 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED 9.9 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with -1 → KILLED 10.10 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with 2 → KILLED 11.11 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 12.12 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 1 with 0 → KILLED 13.13 Location : Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED
|
| 117 |
|
1.1 Location : getLineWidth Killed by : none replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineWidth → NO_COVERAGE 2.2 Location : getLineWidth Killed by : none replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineWidth → NO_COVERAGE 3.3 Location : getLineWidth Killed by : none Negated double field lineWidth → NO_COVERAGE 4.4 Location : getLineWidth Killed by : none Incremented (a++) double field lineWidth → NO_COVERAGE 5.5 Location : getLineWidth Killed by : none Decremented (a--) double field lineWidth → NO_COVERAGE 6.6 Location : getLineWidth Killed by : none Incremented (++a) double field lineWidth → NO_COVERAGE 7.7 Location : getLineWidth Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 127 |
|
1.1 Location : setLineWidth Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Removed assignment to member variable lineWidth → KILLED 2.2 Location : setLineWidth Killed by : none Negated double local variable number 1 → SURVIVED 3.3 Location : setLineWidth Killed by : none Incremented (a++) double local variable number 1 → SURVIVED 4.4 Location : setLineWidth Killed by : none Decremented (a--) double local variable number 1 → SURVIVED 5.5 Location : setLineWidth Killed by : none Incremented (++a) double local variable number 1 → SURVIVED 6.6 Location : setLineWidth Killed by : none Decremented (--a) double local variable number 1 → SURVIVED
|
| 128 |
|
1.1 Location : setLineWidth Killed by : none Substituted 1 with 0 → SURVIVED 2.2 Location : setLineWidth Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED 3.3 Location : setLineWidth Killed by : none Substituted 1 with 0 → SURVIVED 4.4 Location : setLineWidth Killed by : none Substituted 1 with -1 → SURVIVED 5.5 Location : setLineWidth Killed by : none Substituted 1 with -1 → SURVIVED 6.6 Location : setLineWidth Killed by : none Substituted 1 with 2 → SURVIVED 7.7 Location : setLineWidth Killed by : none Substituted 1 with 0 → SURVIVED
|
| 138 |
|
1.1 Location : getLineHeight Killed by : none replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineHeight → NO_COVERAGE 2.2 Location : getLineHeight Killed by : none replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getLineHeight → NO_COVERAGE 3.3 Location : getLineHeight Killed by : none Negated double field lineHeight → NO_COVERAGE 4.4 Location : getLineHeight Killed by : none Incremented (a++) double field lineHeight → NO_COVERAGE 5.5 Location : getLineHeight Killed by : none Decremented (a--) double field lineHeight → NO_COVERAGE 6.6 Location : getLineHeight Killed by : none Incremented (++a) double field lineHeight → NO_COVERAGE 7.7 Location : getLineHeight Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 148 |
|
1.1 Location : setLineHeight Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Removed assignment to member variable lineHeight → KILLED 2.2 Location : setLineHeight Killed by : none Negated double local variable number 1 → SURVIVED 3.3 Location : setLineHeight Killed by : none Incremented (a++) double local variable number 1 → SURVIVED 4.4 Location : setLineHeight Killed by : none Decremented (a--) double local variable number 1 → SURVIVED 5.5 Location : setLineHeight Killed by : none Incremented (++a) double local variable number 1 → SURVIVED 6.6 Location : setLineHeight Killed by : none Decremented (--a) double local variable number 1 → SURVIVED
|
| 149 |
|
1.1 Location : setLineHeight Killed by : none Substituted 1 with 0 → SURVIVED 2.2 Location : setLineHeight Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED 3.3 Location : setLineHeight Killed by : none Substituted 1 with 0 → SURVIVED 4.4 Location : setLineHeight Killed by : none Substituted 1 with -1 → SURVIVED 5.5 Location : setLineHeight Killed by : none Substituted 1 with -1 → SURVIVED 6.6 Location : setLineHeight Killed by : none Substituted 1 with 2 → SURVIVED 7.7 Location : setLineHeight Killed by : none Substituted 1 with 0 → SURVIVED
|
| 161 |
|
1.1 Location : getIsolatedItemWidthPercent Killed by : none replaced double return with 0.0d for org/jfree/chart3d/renderer/category/LineRenderer3D::getIsolatedItemWidthPercent → NO_COVERAGE 2.2 Location : getIsolatedItemWidthPercent Killed by : none replaced return of double value with -(x + 1) for org/jfree/chart3d/renderer/category/LineRenderer3D::getIsolatedItemWidthPercent → NO_COVERAGE 3.3 Location : getIsolatedItemWidthPercent Killed by : none Negated double field isolatedItemWidthPercent → NO_COVERAGE 4.4 Location : getIsolatedItemWidthPercent Killed by : none Incremented (a++) double field isolatedItemWidthPercent → NO_COVERAGE 5.5 Location : getIsolatedItemWidthPercent Killed by : none Decremented (a--) double field isolatedItemWidthPercent → NO_COVERAGE 6.6 Location : getIsolatedItemWidthPercent Killed by : none Incremented (++a) double field isolatedItemWidthPercent → NO_COVERAGE 7.7 Location : getIsolatedItemWidthPercent Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 173 |
|
1.1 Location : setIsolatedItemWidthPercent Killed by : none Removed assignment to member variable isolatedItemWidthPercent → NO_COVERAGE 2.2 Location : setIsolatedItemWidthPercent Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : setIsolatedItemWidthPercent Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 4.4 Location : setIsolatedItemWidthPercent Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 5.5 Location : setIsolatedItemWidthPercent Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 6.6 Location : setIsolatedItemWidthPercent Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE
|
| 174 |
|
1.1 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : setIsolatedItemWidthPercent Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → NO_COVERAGE 3.3 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : setIsolatedItemWidthPercent Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 185 |
|
1.1 Location : getClipColorSource Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE 2.2 Location : getClipColorSource Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 196 |
|
1.1 Location : setClipColorSource Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Removed assignment to member variable clipColorSource → KILLED
|
| 197 |
|
1.1 Location : setClipColorSource Killed by : none Substituted 1 with 0 → SURVIVED 2.2 Location : setClipColorSource Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::fireChangeEvent → SURVIVED 3.3 Location : setClipColorSource Killed by : none Substituted 1 with 0 → SURVIVED 4.4 Location : setClipColorSource Killed by : none Substituted 1 with -1 → SURVIVED 5.5 Location : setClipColorSource Killed by : none Substituted 1 with -1 → SURVIVED 6.6 Location : setClipColorSource Killed by : none Substituted 1 with 2 → SURVIVED 7.7 Location : setClipColorSource Killed by : none Substituted 1 with 0 → SURVIVED
|
| 224 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 226 |
|
1.1 Location : composeItem Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Less or equal to less than → NO_COVERAGE 7.7 Location : composeItem Killed by : none Less or equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none Less or equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none Less or equal to equal → NO_COVERAGE 10.10 Location : composeItem Killed by : none Less or equal to not equal → NO_COVERAGE 11.11 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 227 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer subtraction with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced integer subtraction with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced integer subtraction with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 230 |
|
1.1 Location : composeItem Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced integer subtraction with multiplication → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced integer subtraction with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced integer subtraction with modulus → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 19.19 Location : composeItem Killed by : none greater or equal to less than → NO_COVERAGE 20.20 Location : composeItem Killed by : none greater or equal to less or equal → NO_COVERAGE 21.21 Location : composeItem Killed by : none greater or equal to greater than → NO_COVERAGE 22.22 Location : composeItem Killed by : none greater or equal to equal → NO_COVERAGE 23.23 Location : composeItem Killed by : none greater or equal to not equal → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 231 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced integer addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getValue → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced integer addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced integer addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced integer addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 234 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getPlot → NO_COVERAGE
|
| 235 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/plot/CategoryPlot3D::getRowAxis → NO_COVERAGE
|
| 236 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/plot/CategoryPlot3D::getColumnAxis → NO_COVERAGE
|
| 237 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/plot/CategoryPlot3D::getValueAxis → NO_COVERAGE
|
| 238 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::getRange → NO_COVERAGE
|
| 240 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getSeriesKey → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE
|
| 241 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getRowKey → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE
|
| 242 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 243 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
| 244 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
| 245 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Dimension3D::getWidth → NO_COVERAGE
|
| 246 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Dimension3D::getHeight → NO_COVERAGE
|
| 247 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Dimension3D::getDepth → NO_COVERAGE
|
| 258 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 259 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 260 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 261 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 262 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 5.5 Location : composeItem Killed by : none not equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none not equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none not equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none not equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 263 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 264 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 6.6 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none not equal to less than → NO_COVERAGE 12.12 Location : composeItem Killed by : none not equal to less or equal → NO_COVERAGE 13.13 Location : composeItem Killed by : none not equal to greater than → NO_COVERAGE 14.14 Location : composeItem Killed by : none not equal to greater or equal → NO_COVERAGE 15.15 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE
|
| 265 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 266 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 6.6 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 268 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 269 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 270 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 271 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE
|
| 273 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnCount → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced integer subtraction with multiplication → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced integer subtraction with division → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced integer subtraction with modulus → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none not equal to less than → NO_COVERAGE 19.19 Location : composeItem Killed by : none not equal to less or equal → NO_COVERAGE 20.20 Location : composeItem Killed by : none not equal to greater than → NO_COVERAGE 21.21 Location : composeItem Killed by : none not equal to greater or equal → NO_COVERAGE 22.22 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 274 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 275 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 276 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 277 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 278 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE
|
| 280 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 281 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 282 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Negated integer local variable number 38 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 20.20 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 21.21 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 22.22 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 23.23 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 24.24 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (a++) integer local variable number 38 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (a--) integer local variable number 38 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) integer local variable number 38 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) integer local variable number 34 → NO_COVERAGE
|
| 283 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 284 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 9.9 Location : composeItem Killed by : none Negated integer local variable number 39 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 20.20 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 21.21 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 22.22 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 23.23 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 24.24 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (a++) integer local variable number 39 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (a--) integer local variable number 39 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) integer local variable number 39 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) integer local variable number 35 → NO_COVERAGE
|
| 285 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 286 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 6.6 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 9.9 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 10.10 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 11.11 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 21.21 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 22.22 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 23.23 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE
|
| 292 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 26 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 28 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 7 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 26 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 28 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 26 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) double local variable number 28 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (++a) double local variable number 26 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (++a) double local variable number 28 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (--a) double local variable number 26 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (--a) double local variable number 28 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE
|
| 293 |
|
1.1 Location : composeItem Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Substituted NaN with 0.0 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Substituted NaN with -1.0 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Substituted NaN with NaN → NO_COVERAGE
|
| 294 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 295 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to java/lang/Number::doubleValue → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 30 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 9 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 30 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 30 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (++a) double local variable number 30 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) double local variable number 30 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 297 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 24 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 32 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 11 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 24 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 32 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 11 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 24 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) double local variable number 32 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (a--) double local variable number 11 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (++a) double local variable number 24 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (++a) double local variable number 32 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (++a) double local variable number 11 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (--a) double local variable number 24 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (--a) double local variable number 32 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Decremented (--a) double local variable number 11 → NO_COVERAGE
|
| 298 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/Range::getMin → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 30 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 9 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 30 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 30 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (++a) double local variable number 30 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) double local variable number 30 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 299 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/Range::getMax → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 30 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 9 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 30 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 30 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (++a) double local variable number 30 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) double local variable number 30 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 300 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getColorSource → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/CategoryColorSource::getColor → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 302 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 303 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getClipColorSource → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/CategoryColorSource::getColor → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated integer local variable number 2 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 3 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Incremented (a++) integer local variable number 2 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Incremented (a++) integer local variable number 3 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Decremented (a--) integer local variable number 2 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Decremented (a--) integer local variable number 3 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 2 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (++a) integer local variable number 3 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (--a) integer local variable number 2 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (--a) integer local variable number 3 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 304 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 308 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/KeyedValues3DItemKey::<init> → NO_COVERAGE
|
| 310 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 38 → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (a++) integer local variable number 38 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 38 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 38 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Decremented (--a) integer local variable number 34 → NO_COVERAGE
|
| 311 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced integer subtraction with addition → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced integer subtraction with multiplication → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced integer subtraction with division → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer subtraction with modulus → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 312 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
| 313 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 55 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 28 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 7 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 55 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 28 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 55 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) double local variable number 28 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (++a) double local variable number 55 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (++a) double local variable number 28 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (--a) double local variable number 55 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (--a) double local variable number 28 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE
|
| 315 |
|
1.1 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 57 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double division with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double division with addition → NO_COVERAGE 14.14 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 15.15 Location : composeItem Killed by : none Replaced double division with subtraction → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) double local variable number 57 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 57 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (++a) double local variable number 57 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) double local variable number 57 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE
|
| 316 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to java/lang/Number::doubleValue → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 30 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 9 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 30 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 30 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (++a) double local variable number 30 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) double local variable number 30 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 318 |
|
1.1 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 61 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double division with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double division with addition → NO_COVERAGE 14.14 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 15.15 Location : composeItem Killed by : none Replaced double division with subtraction → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) double local variable number 61 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 61 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (++a) double local variable number 61 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) double local variable number 61 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE
|
| 319 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated double local variable number 59 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated double local variable number 63 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double field lineWidth → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated double field lineHeight → NO_COVERAGE 9.9 Location : composeItem Killed by : none Negated double local variable number 47 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Negated double local variable number 49 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Negated integer local variable number 34 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Negated integer local variable number 35 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 59 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 63 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (a++) double field lineWidth → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (a++) double field lineHeight → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (a++) double local variable number 47 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Incremented (a++) double local variable number 49 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) integer local variable number 34 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) integer local variable number 35 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 59 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 63 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (a--) double field lineWidth → NO_COVERAGE 30.30 Location : composeItem Killed by : none Decremented (a--) double field lineHeight → NO_COVERAGE 31.31 Location : composeItem Killed by : none Decremented (a--) double local variable number 47 → NO_COVERAGE 32.32 Location : composeItem Killed by : none Decremented (a--) double local variable number 49 → NO_COVERAGE 33.33 Location : composeItem Killed by : none Decremented (a--) integer local variable number 34 → NO_COVERAGE 34.34 Location : composeItem Killed by : none Decremented (a--) integer local variable number 35 → NO_COVERAGE 35.35 Location : composeItem Killed by : none Incremented (++a) double local variable number 59 → NO_COVERAGE 36.36 Location : composeItem Killed by : none Incremented (++a) double local variable number 63 → NO_COVERAGE 37.37 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 38.38 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 39.39 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 40.40 Location : composeItem Killed by : none Incremented (++a) double field lineWidth → NO_COVERAGE 41.41 Location : composeItem Killed by : none Incremented (++a) double field lineHeight → NO_COVERAGE 42.42 Location : composeItem Killed by : none Incremented (++a) double local variable number 47 → NO_COVERAGE 43.43 Location : composeItem Killed by : none Incremented (++a) double local variable number 49 → NO_COVERAGE 44.44 Location : composeItem Killed by : none Incremented (++a) integer local variable number 34 → NO_COVERAGE 45.45 Location : composeItem Killed by : none Incremented (++a) integer local variable number 35 → NO_COVERAGE 46.46 Location : composeItem Killed by : none Decremented (--a) double local variable number 59 → NO_COVERAGE 47.47 Location : composeItem Killed by : none Decremented (--a) double local variable number 63 → NO_COVERAGE 48.48 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 49.49 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 50.50 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE 51.51 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE 52.52 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE 53.53 Location : composeItem Killed by : none Decremented (--a) double local variable number 47 → NO_COVERAGE 54.54 Location : composeItem Killed by : none Decremented (--a) double local variable number 49 → NO_COVERAGE 55.55 Location : composeItem Killed by : none Decremented (--a) integer local variable number 37 → NO_COVERAGE 56.56 Location : composeItem Killed by : none Decremented (--a) integer local variable number 38 → NO_COVERAGE
|
| 322 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 323 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 324 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 327 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 39 → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (a++) integer local variable number 39 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 39 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 39 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Decremented (--a) integer local variable number 35 → NO_COVERAGE
|
| 328 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced integer addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/data/category/CategoryDataset3D::getColumnKey → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 4 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Replaced integer operation by second member → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced integer addition with subtraction → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced integer addition with multiplication → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced integer addition with division → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced integer addition with modulus → NO_COVERAGE 10.10 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Incremented (a++) integer local variable number 4 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) integer local variable number 4 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) integer local variable number 4 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) integer local variable number 4 → NO_COVERAGE
|
| 329 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryValue → NO_COVERAGE
|
| 330 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 55 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 28 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 7 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 55 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 28 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 55 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) double local variable number 28 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (++a) double local variable number 55 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (++a) double local variable number 28 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Decremented (--a) double local variable number 55 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Decremented (--a) double local variable number 28 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE
|
| 332 |
|
1.1 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 57 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double division with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double division with addition → NO_COVERAGE 14.14 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 15.15 Location : composeItem Killed by : none Replaced double division with subtraction → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) double local variable number 57 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 57 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (++a) double local variable number 57 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) double local variable number 57 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE
|
| 333 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to java/lang/Number::doubleValue → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/ValueAxis3D::translateToWorld → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 30 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 9 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 30 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 30 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (++a) double local variable number 30 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (--a) double local variable number 30 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 335 |
|
1.1 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 61 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double division with multiplication → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double division with modulus → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double division with addition → NO_COVERAGE 14.14 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 15.15 Location : composeItem Killed by : none Replaced double division with subtraction → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) double local variable number 61 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 61 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (++a) double local variable number 61 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) double local variable number 61 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE
|
| 336 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 59 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 63 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double field lineWidth → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated double field lineHeight → NO_COVERAGE 9.9 Location : composeItem Killed by : none Negated double local variable number 47 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Negated double local variable number 49 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Negated integer local variable number 36 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Negated integer local variable number 37 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 14.14 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Incremented (a++) double local variable number 59 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Incremented (a++) double local variable number 63 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Incremented (a++) double field lineWidth → NO_COVERAGE 19.19 Location : composeItem Killed by : none Incremented (a++) double field lineHeight → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (a++) double local variable number 47 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Incremented (a++) double local variable number 49 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) integer local variable number 36 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) integer local variable number 37 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (a--) double local variable number 59 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (a--) double local variable number 63 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (a--) double field lineWidth → NO_COVERAGE 30.30 Location : composeItem Killed by : none Decremented (a--) double field lineHeight → NO_COVERAGE 31.31 Location : composeItem Killed by : none Decremented (a--) double local variable number 47 → NO_COVERAGE 32.32 Location : composeItem Killed by : none Decremented (a--) double local variable number 49 → NO_COVERAGE 33.33 Location : composeItem Killed by : none Decremented (a--) integer local variable number 36 → NO_COVERAGE 34.34 Location : composeItem Killed by : none Decremented (a--) integer local variable number 37 → NO_COVERAGE 35.35 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 36.36 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 37.37 Location : composeItem Killed by : none Incremented (++a) double local variable number 59 → NO_COVERAGE 38.38 Location : composeItem Killed by : none Incremented (++a) double local variable number 63 → NO_COVERAGE 39.39 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 40.40 Location : composeItem Killed by : none Incremented (++a) double field lineWidth → NO_COVERAGE 41.41 Location : composeItem Killed by : none Incremented (++a) double field lineHeight → NO_COVERAGE 42.42 Location : composeItem Killed by : none Incremented (++a) double local variable number 47 → NO_COVERAGE 43.43 Location : composeItem Killed by : none Incremented (++a) double local variable number 49 → NO_COVERAGE 44.44 Location : composeItem Killed by : none Incremented (++a) integer local variable number 36 → NO_COVERAGE 45.45 Location : composeItem Killed by : none Incremented (++a) integer local variable number 37 → NO_COVERAGE 46.46 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 47.47 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 48.48 Location : composeItem Killed by : none Decremented (--a) double local variable number 59 → NO_COVERAGE 49.49 Location : composeItem Killed by : none Decremented (--a) double local variable number 63 → NO_COVERAGE 50.50 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE 51.51 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE 52.52 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE 53.53 Location : composeItem Killed by : none Decremented (--a) double local variable number 47 → NO_COVERAGE 54.54 Location : composeItem Killed by : none Decremented (--a) double local variable number 49 → NO_COVERAGE 55.55 Location : composeItem Killed by : none Decremented (--a) integer local variable number 39 → NO_COVERAGE 56.56 Location : composeItem Killed by : none Decremented (--a) integer local variable number 40 → NO_COVERAGE
|
| 339 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 340 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 341 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 344 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated integer local variable number 40 → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (a++) integer local variable number 40 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (a--) integer local variable number 40 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (++a) integer local variable number 40 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Decremented (--a) integer local variable number 36 → NO_COVERAGE
|
| 345 |
|
1.1 Location : composeItem Killed by : none Replaced double multiplication with division → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::getCategoryWidth → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated double field isolatedItemWidthPercent → NO_COVERAGE 4.4 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : composeItem Killed by : none Replaced double multiplication with division → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double multiplication with addition → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE 9.9 Location : composeItem Killed by : none Incremented (a++) double field isolatedItemWidthPercent → NO_COVERAGE 10.10 Location : composeItem Killed by : none Decremented (a--) double field isolatedItemWidthPercent → NO_COVERAGE 11.11 Location : composeItem Killed by : none Incremented (++a) double field isolatedItemWidthPercent → NO_COVERAGE 12.12 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 347 |
|
1.1 Location : composeItem Killed by : none replaced call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld with argument → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/axis/CategoryAxis3D::translateToWorld → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated double local variable number 66 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 28 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Incremented (a++) double local variable number 66 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Incremented (a++) double local variable number 28 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Decremented (a--) double local variable number 66 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Decremented (a--) double local variable number 28 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Incremented (++a) double local variable number 66 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (++a) double local variable number 28 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Decremented (--a) double local variable number 54 → NO_COVERAGE 12.12 Location : composeItem Killed by : none Decremented (--a) double local variable number 28 → NO_COVERAGE
|
| 348 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::createBox → NO_COVERAGE 2.2 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Negated double local variable number 68 → NO_COVERAGE 4.4 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double field lineHeight → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double field lineWidth → NO_COVERAGE 8.8 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Incremented (a++) double local variable number 68 → NO_COVERAGE 10.10 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 11.11 Location : composeItem Killed by : none Incremented (a++) double field lineHeight → NO_COVERAGE 12.12 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 13.13 Location : composeItem Killed by : none Incremented (a++) double field lineWidth → NO_COVERAGE 14.14 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Decremented (a--) double local variable number 68 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Decremented (a--) double field lineHeight → NO_COVERAGE 18.18 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Decremented (a--) double field lineWidth → NO_COVERAGE 20.20 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Incremented (++a) double local variable number 68 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (++a) double field lineHeight → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (++a) double field lineWidth → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (--a) double local variable number 56 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE 30.30 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE 31.31 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 350 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 351 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 352 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 356 |
|
1.1 Location : composeItem Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : composeItem Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 4.4 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 5.5 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 6.6 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 7.7 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelGenerator → NO_COVERAGE 8.8 Location : composeItem Killed by : none removed call to java/lang/Double::isNaN → NO_COVERAGE 9.9 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 10.10 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 11.11 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 12.12 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 13.13 Location : composeItem Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 14.14 Location : composeItem Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 15.15 Location : composeItem Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 16.16 Location : composeItem Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 17.17 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Negated double local variable number 47 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Negated double local variable number 49 → NO_COVERAGE 22.22 Location : composeItem Killed by : none not equal to less than → NO_COVERAGE 23.23 Location : composeItem Killed by : none Less than to less or equal → NO_COVERAGE 24.24 Location : composeItem Killed by : none greater than to less than → NO_COVERAGE 25.25 Location : composeItem Killed by : none not equal to less or equal → NO_COVERAGE 26.26 Location : composeItem Killed by : none Less than to greater than → NO_COVERAGE 27.27 Location : composeItem Killed by : none greater than to less or equal → NO_COVERAGE 28.28 Location : composeItem Killed by : none not equal to greater than → NO_COVERAGE 29.29 Location : composeItem Killed by : none Less than to greater or equal → NO_COVERAGE 30.30 Location : composeItem Killed by : none greater than to greater or equal → NO_COVERAGE 31.31 Location : composeItem Killed by : none not equal to greater or equal → NO_COVERAGE 32.32 Location : composeItem Killed by : none Less than to equal → NO_COVERAGE 33.33 Location : composeItem Killed by : none greater than to equal → NO_COVERAGE 34.34 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE 35.35 Location : composeItem Killed by : none not equal to equal → NO_COVERAGE 36.36 Location : composeItem Killed by : none Less than to not equal → NO_COVERAGE 37.37 Location : composeItem Killed by : none greater than to not equal → NO_COVERAGE 38.38 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 39.39 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 40.40 Location : composeItem Killed by : none Incremented (a++) double local variable number 47 → NO_COVERAGE 41.41 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 42.42 Location : composeItem Killed by : none Incremented (a++) double local variable number 49 → NO_COVERAGE 43.43 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 44.44 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 45.45 Location : composeItem Killed by : none Decremented (a--) double local variable number 47 → NO_COVERAGE 46.46 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 47.47 Location : composeItem Killed by : none Decremented (a--) double local variable number 49 → NO_COVERAGE 48.48 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 49.49 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 50.50 Location : composeItem Killed by : none Incremented (++a) double local variable number 47 → NO_COVERAGE 51.51 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 52.52 Location : composeItem Killed by : none Incremented (++a) double local variable number 49 → NO_COVERAGE 53.53 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 54.54 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 55.55 Location : composeItem Killed by : none Decremented (--a) double local variable number 47 → NO_COVERAGE 56.56 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 57.57 Location : composeItem Killed by : none Decremented (--a) double local variable number 49 → NO_COVERAGE
|
| 358 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelGenerator → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/label/CategoryItemLabelGenerator::generateItemLabel → NO_COVERAGE
|
| 360 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 361 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelPositioning → NO_COVERAGE
|
| 362 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelOffsets → NO_COVERAGE
|
| 363 |
|
1.1 Location : composeItem Killed by : none Replaced double multiplication with division → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Offset3D::getDY → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Dimension3D::getHeight → NO_COVERAGE 4.4 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : composeItem Killed by : none Replaced double multiplication with division → NO_COVERAGE 6.6 Location : composeItem Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 7.7 Location : composeItem Killed by : none Replaced double multiplication with addition → NO_COVERAGE 8.8 Location : composeItem Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE
|
| 364 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/label/ItemLabelPositioning::equals → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 365 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
| 366 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
| 367 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double local variable number 57 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (a++) double local variable number 57 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (a--) double local variable number 57 → NO_COVERAGE 30.30 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 31.31 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 32.32 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 33.33 Location : composeItem Killed by : none Incremented (++a) double local variable number 57 → NO_COVERAGE 34.34 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 35.35 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 36.36 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 37.37 Location : composeItem Killed by : none Decremented (--a) double local variable number 57 → NO_COVERAGE 38.38 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE
|
| 369 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 370 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 371 |
|
1.1 Location : composeItem Killed by : none negated conditional → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/label/ItemLabelPositioning::equals → NO_COVERAGE 3.3 Location : composeItem Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 5.5 Location : composeItem Killed by : none equal to less than → NO_COVERAGE 6.6 Location : composeItem Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : composeItem Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : composeItem Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : composeItem Killed by : none equal to not equal → NO_COVERAGE
|
| 373 |
|
1.1 Location : composeItem Killed by : none Negated double field lineWidth → NO_COVERAGE 2.2 Location : composeItem Killed by : none Incremented (a++) double field lineWidth → NO_COVERAGE 3.3 Location : composeItem Killed by : none Decremented (a--) double field lineWidth → NO_COVERAGE 4.4 Location : composeItem Killed by : none Incremented (++a) double field lineWidth → NO_COVERAGE 5.5 Location : composeItem Killed by : none Decremented (--a) double field → NO_COVERAGE
|
| 374 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
| 375 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
| 376 |
|
1.1 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double subtraction with addition → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated double local variable number 59 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double subtraction with addition → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double subtraction with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (a++) double local variable number 59 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (a--) double local variable number 59 → NO_COVERAGE 30.30 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 31.31 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 32.32 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 33.33 Location : composeItem Killed by : none Incremented (++a) double local variable number 59 → NO_COVERAGE 34.34 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 35.35 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 36.36 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE 37.37 Location : composeItem Killed by : none Decremented (--a) double local variable number 59 → NO_COVERAGE
|
| 378 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 379 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 380 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::createLabelObject → NO_COVERAGE
|
| 381 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelFont → NO_COVERAGE 2.2 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelColor → NO_COVERAGE
|
| 382 |
|
1.1 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 4.4 Location : composeItem Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::getItemLabelBackgroundColor → NO_COVERAGE 5.5 Location : composeItem Killed by : none Negated double local variable number 41 → NO_COVERAGE 6.6 Location : composeItem Killed by : none Negated double local variable number 43 → NO_COVERAGE 7.7 Location : composeItem Killed by : none Negated double local variable number 45 → NO_COVERAGE 8.8 Location : composeItem Killed by : none Negated double local variable number 59 → NO_COVERAGE 9.9 Location : composeItem Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : composeItem Killed by : none Replaced double addition with subtraction → NO_COVERAGE 11.11 Location : composeItem Killed by : none Replaced double addition with multiplication → NO_COVERAGE 12.12 Location : composeItem Killed by : none Replaced double addition with division → NO_COVERAGE 13.13 Location : composeItem Killed by : none Replaced double addition with modulus → NO_COVERAGE 14.14 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 17.17 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : composeItem Killed by : none Substituted 1 with -1 → NO_COVERAGE 19.19 Location : composeItem Killed by : none Substituted 1 with 2 → NO_COVERAGE 20.20 Location : composeItem Killed by : none Substituted 0 with 1 → NO_COVERAGE 21.21 Location : composeItem Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : composeItem Killed by : none Substituted 0 with -1 → NO_COVERAGE 23.23 Location : composeItem Killed by : none Incremented (a++) double local variable number 41 → NO_COVERAGE 24.24 Location : composeItem Killed by : none Incremented (a++) double local variable number 43 → NO_COVERAGE 25.25 Location : composeItem Killed by : none Incremented (a++) double local variable number 45 → NO_COVERAGE 26.26 Location : composeItem Killed by : none Incremented (a++) double local variable number 59 → NO_COVERAGE 27.27 Location : composeItem Killed by : none Decremented (a--) double local variable number 41 → NO_COVERAGE 28.28 Location : composeItem Killed by : none Decremented (a--) double local variable number 43 → NO_COVERAGE 29.29 Location : composeItem Killed by : none Decremented (a--) double local variable number 45 → NO_COVERAGE 30.30 Location : composeItem Killed by : none Decremented (a--) double local variable number 59 → NO_COVERAGE 31.31 Location : composeItem Killed by : none Incremented (++a) double local variable number 41 → NO_COVERAGE 32.32 Location : composeItem Killed by : none Incremented (++a) double local variable number 43 → NO_COVERAGE 33.33 Location : composeItem Killed by : none Incremented (++a) double local variable number 45 → NO_COVERAGE 34.34 Location : composeItem Killed by : none Incremented (++a) double local variable number 59 → NO_COVERAGE 35.35 Location : composeItem Killed by : none Decremented (--a) double local variable number 41 → NO_COVERAGE 36.36 Location : composeItem Killed by : none Decremented (--a) double local variable number 43 → NO_COVERAGE 37.37 Location : composeItem Killed by : none Decremented (--a) double local variable number 45 → NO_COVERAGE 38.38 Location : composeItem Killed by : none Decremented (--a) double local variable number 59 → NO_COVERAGE
|
| 384 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 385 |
|
1.1 Location : composeItem Killed by : none removed call to org/jfree/chart3d/graphics3d/World::add → NO_COVERAGE
|
| 418 |
|
1.1 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : createSegment Killed by : none Replaced double division with multiplication → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 11 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double division with multiplication → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double division with modulus → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double division with addition → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double division with subtraction → NO_COVERAGE 9.9 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 11 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (a--) double local variable number 11 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (++a) double local variable number 11 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Decremented (--a) double local variable number 11 → NO_COVERAGE
|
| 419 |
|
1.1 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 2.2 Location : createSegment Killed by : none Replaced double division with multiplication → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 13 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double division with multiplication → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double division with modulus → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double division with addition → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double division with subtraction → NO_COVERAGE 9.9 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Substituted 2.0 with 0.0 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Substituted 2.0 with -1.0 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Substituted 2.0 with -2.0 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Substituted 2.0 with 3.0 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Substituted 2.0 with 1.0 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 13 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (a--) double local variable number 13 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (++a) double local variable number 13 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Decremented (--a) double local variable number 13 → NO_COVERAGE
|
| 420 |
|
1.1 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 25 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double subtraction with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 25 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 25 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 25 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 25 → NO_COVERAGE
|
| 421 |
|
1.1 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 25 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double addition with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double addition with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double addition with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 25 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 25 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 25 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 25 → NO_COVERAGE
|
| 422 |
|
1.1 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 7 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 25 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double subtraction with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 25 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 25 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 25 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 25 → NO_COVERAGE
|
| 423 |
|
1.1 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 7 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 25 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double addition with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double addition with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double addition with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 25 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 25 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 25 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 25 → NO_COVERAGE
|
| 424 |
|
1.1 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 9 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 23 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double subtraction with addition → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double subtraction with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 23 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 23 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 23 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 23 → NO_COVERAGE
|
| 425 |
|
1.1 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 9 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 23 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Replaced double operation by second member → NO_COVERAGE 5.5 Location : createSegment Killed by : none Replaced double addition with subtraction → NO_COVERAGE 6.6 Location : createSegment Killed by : none Replaced double addition with multiplication → NO_COVERAGE 7.7 Location : createSegment Killed by : none Replaced double addition with division → NO_COVERAGE 8.8 Location : createSegment Killed by : none Replaced double addition with modulus → NO_COVERAGE 9.9 Location : createSegment Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 23 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Decremented (a--) double local variable number 23 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (++a) double local variable number 23 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Decremented (--a) double local variable number 23 → NO_COVERAGE
|
| 426 |
|
1.1 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE
|
| 428 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegment Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegment Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegment Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegment Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE
|
| 429 |
|
1.1 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Substituted 0 with -1 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 431 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 4.4 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 5.5 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 6.6 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 7.7 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 8.8 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Less or equal to less than → NO_COVERAGE 14.14 Location : createSegment Killed by : none Less or equal to less than → NO_COVERAGE 15.15 Location : createSegment Killed by : none Less or equal to greater than → NO_COVERAGE 16.16 Location : createSegment Killed by : none Less or equal to greater than → NO_COVERAGE 17.17 Location : createSegment Killed by : none Less or equal to greater or equal → NO_COVERAGE 18.18 Location : createSegment Killed by : none Less or equal to greater or equal → NO_COVERAGE 19.19 Location : createSegment Killed by : none Less or equal to equal → NO_COVERAGE 20.20 Location : createSegment Killed by : none Less or equal to equal → NO_COVERAGE 21.21 Location : createSegment Killed by : none Less or equal to not equal → NO_COVERAGE 22.22 Location : createSegment Killed by : none Less or equal to not equal → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE
|
| 432 |
|
1.1 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated integer local variable number 21 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) integer local variable number 21 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) integer local variable number 21 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) integer local variable number 21 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) integer local variable number 21 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 434 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 4.4 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 5.5 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 6.6 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 7.7 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 8.8 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Less or equal to less than → NO_COVERAGE 14.14 Location : createSegment Killed by : none greater than to less than → NO_COVERAGE 15.15 Location : createSegment Killed by : none Less or equal to greater than → NO_COVERAGE 16.16 Location : createSegment Killed by : none greater than to less or equal → NO_COVERAGE 17.17 Location : createSegment Killed by : none Less or equal to greater or equal → NO_COVERAGE 18.18 Location : createSegment Killed by : none greater than to greater or equal → NO_COVERAGE 19.19 Location : createSegment Killed by : none Less or equal to equal → NO_COVERAGE 20.20 Location : createSegment Killed by : none greater than to equal → NO_COVERAGE 21.21 Location : createSegment Killed by : none Less or equal to not equal → NO_COVERAGE 22.22 Location : createSegment Killed by : none greater than to not equal → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE
|
| 435 |
|
1.1 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated integer local variable number 21 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) integer local variable number 21 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) integer local variable number 21 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) integer local variable number 21 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) integer local variable number 21 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 437 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 4.4 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 5.5 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 6.6 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 7.7 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 8.8 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Less or equal to less than → NO_COVERAGE 14.14 Location : createSegment Killed by : none Less than to less or equal → NO_COVERAGE 15.15 Location : createSegment Killed by : none Less or equal to greater than → NO_COVERAGE 16.16 Location : createSegment Killed by : none Less than to greater than → NO_COVERAGE 17.17 Location : createSegment Killed by : none Less or equal to greater or equal → NO_COVERAGE 18.18 Location : createSegment Killed by : none Less than to greater or equal → NO_COVERAGE 19.19 Location : createSegment Killed by : none Less or equal to equal → NO_COVERAGE 20.20 Location : createSegment Killed by : none Less than to equal → NO_COVERAGE 21.21 Location : createSegment Killed by : none Less or equal to not equal → NO_COVERAGE 22.22 Location : createSegment Killed by : none Less than to not equal → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE
|
| 438 |
|
1.1 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated integer local variable number 21 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) integer local variable number 21 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) integer local variable number 21 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) integer local variable number 21 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) integer local variable number 21 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 440 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 4.4 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 5.5 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 6.6 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 7.7 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 8.8 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Less or equal to less than → NO_COVERAGE 14.14 Location : createSegment Killed by : none greater or equal to less than → NO_COVERAGE 15.15 Location : createSegment Killed by : none Less or equal to greater than → NO_COVERAGE 16.16 Location : createSegment Killed by : none greater or equal to less or equal → NO_COVERAGE 17.17 Location : createSegment Killed by : none Less or equal to greater or equal → NO_COVERAGE 18.18 Location : createSegment Killed by : none greater or equal to greater than → NO_COVERAGE 19.19 Location : createSegment Killed by : none Less or equal to equal → NO_COVERAGE 20.20 Location : createSegment Killed by : none greater or equal to equal → NO_COVERAGE 21.21 Location : createSegment Killed by : none Less or equal to not equal → NO_COVERAGE 22.22 Location : createSegment Killed by : none greater or equal to not equal → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE
|
| 441 |
|
1.1 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated integer local variable number 21 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) integer local variable number 21 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) integer local variable number 21 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) integer local variable number 21 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) integer local variable number 21 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 443 |
|
1.1 Location : createSegment Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegment Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegment Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegment Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 7.7 Location : createSegment Killed by : none greater than to less than → NO_COVERAGE 8.8 Location : createSegment Killed by : none greater than to less or equal → NO_COVERAGE 9.9 Location : createSegment Killed by : none greater than to greater or equal → NO_COVERAGE 10.10 Location : createSegment Killed by : none greater than to equal → NO_COVERAGE 11.11 Location : createSegment Killed by : none greater than to not equal → NO_COVERAGE 12.12 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE
|
| 444 |
|
1.1 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegment Killed by : none removed call to org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 3.3 Location : createSegment Killed by : none Negated double local variable number 1 → NO_COVERAGE 4.4 Location : createSegment Killed by : none Negated double local variable number 5 → NO_COVERAGE 5.5 Location : createSegment Killed by : none Negated double local variable number 27 → NO_COVERAGE 6.6 Location : createSegment Killed by : none Negated double local variable number 29 → NO_COVERAGE 7.7 Location : createSegment Killed by : none Negated double local variable number 31 → NO_COVERAGE 8.8 Location : createSegment Killed by : none Negated double local variable number 33 → NO_COVERAGE 9.9 Location : createSegment Killed by : none Negated double local variable number 15 → NO_COVERAGE 10.10 Location : createSegment Killed by : none Negated double local variable number 17 → NO_COVERAGE 11.11 Location : createSegment Killed by : none Negated double local variable number 35 → NO_COVERAGE 12.12 Location : createSegment Killed by : none Negated double local variable number 37 → NO_COVERAGE 13.13 Location : createSegment Killed by : none Negated integer local variable number 22 → NO_COVERAGE 14.14 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegment Killed by : none Substituted 0 with -1 → NO_COVERAGE 16.16 Location : createSegment Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegment Killed by : none Substituted 0 with -1 → NO_COVERAGE 18.18 Location : createSegment Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 19.19 Location : createSegment Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 20.20 Location : createSegment Killed by : none Incremented (a++) double local variable number 27 → NO_COVERAGE 21.21 Location : createSegment Killed by : none Incremented (a++) double local variable number 29 → NO_COVERAGE 22.22 Location : createSegment Killed by : none Incremented (a++) double local variable number 31 → NO_COVERAGE 23.23 Location : createSegment Killed by : none Incremented (a++) double local variable number 33 → NO_COVERAGE 24.24 Location : createSegment Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : createSegment Killed by : none Incremented (a++) double local variable number 17 → NO_COVERAGE 26.26 Location : createSegment Killed by : none Incremented (a++) double local variable number 35 → NO_COVERAGE 27.27 Location : createSegment Killed by : none Incremented (a++) double local variable number 37 → NO_COVERAGE 28.28 Location : createSegment Killed by : none Incremented (a++) integer local variable number 22 → NO_COVERAGE 29.29 Location : createSegment Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 30.30 Location : createSegment Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 31.31 Location : createSegment Killed by : none Decremented (a--) double local variable number 27 → NO_COVERAGE 32.32 Location : createSegment Killed by : none Decremented (a--) double local variable number 29 → NO_COVERAGE 33.33 Location : createSegment Killed by : none Decremented (a--) double local variable number 31 → NO_COVERAGE 34.34 Location : createSegment Killed by : none Decremented (a--) double local variable number 33 → NO_COVERAGE 35.35 Location : createSegment Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 36.36 Location : createSegment Killed by : none Decremented (a--) double local variable number 17 → NO_COVERAGE 37.37 Location : createSegment Killed by : none Decremented (a--) double local variable number 35 → NO_COVERAGE 38.38 Location : createSegment Killed by : none Decremented (a--) double local variable number 37 → NO_COVERAGE 39.39 Location : createSegment Killed by : none Decremented (a--) integer local variable number 22 → NO_COVERAGE 40.40 Location : createSegment Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 41.41 Location : createSegment Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 42.42 Location : createSegment Killed by : none Incremented (++a) double local variable number 27 → NO_COVERAGE 43.43 Location : createSegment Killed by : none Incremented (++a) double local variable number 29 → NO_COVERAGE 44.44 Location : createSegment Killed by : none Incremented (++a) double local variable number 31 → NO_COVERAGE 45.45 Location : createSegment Killed by : none Incremented (++a) double local variable number 33 → NO_COVERAGE 46.46 Location : createSegment Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 47.47 Location : createSegment Killed by : none Incremented (++a) double local variable number 17 → NO_COVERAGE 48.48 Location : createSegment Killed by : none Incremented (++a) double local variable number 35 → NO_COVERAGE 49.49 Location : createSegment Killed by : none Incremented (++a) double local variable number 37 → NO_COVERAGE 50.50 Location : createSegment Killed by : none Incremented (++a) integer local variable number 22 → NO_COVERAGE 51.51 Location : createSegment Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 52.52 Location : createSegment Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 53.53 Location : createSegment Killed by : none Decremented (--a) double local variable number 27 → NO_COVERAGE 54.54 Location : createSegment Killed by : none Decremented (--a) double local variable number 29 → NO_COVERAGE 55.55 Location : createSegment Killed by : none Decremented (--a) double local variable number 31 → NO_COVERAGE 56.56 Location : createSegment Killed by : none Decremented (--a) double local variable number 33 → NO_COVERAGE 57.57 Location : createSegment Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 58.58 Location : createSegment Killed by : none Decremented (--a) double local variable number 17 → NO_COVERAGE 59.59 Location : createSegment Killed by : none Decremented (--a) double local variable number 35 → NO_COVERAGE 60.60 Location : createSegment Killed by : none Decremented (--a) double local variable number 37 → NO_COVERAGE 61.61 Location : createSegment Killed by : none Decremented (--a) integer local variable number 22 → NO_COVERAGE
|
| 447 |
|
1.1 Location : createSegment Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment → NO_COVERAGE 2.2 Location : createSegment Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegment to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 468 |
|
1.1 Location : calcCrossPoints Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Substituted 4 with 1 → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Substituted NaN with 1.0 → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Substituted NaN with 0.0 → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Substituted NaN with 0.0 → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Substituted NaN with 0.0 → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Substituted NaN with 0.0 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Substituted NaN with -1.0 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Substituted NaN with -1.0 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Substituted NaN with -1.0 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Substituted NaN with -1.0 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Substituted NaN with NaN → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Substituted NaN with NaN → NO_COVERAGE 39.39 Location : calcCrossPoints Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : calcCrossPoints Killed by : none Substituted NaN with NaN → NO_COVERAGE 41.41 Location : calcCrossPoints Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : calcCrossPoints Killed by : none Substituted NaN with NaN → NO_COVERAGE 43.43 Location : calcCrossPoints Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : calcCrossPoints Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : calcCrossPoints Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : calcCrossPoints Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : calcCrossPoints Killed by : none Substituted 4 with 3 → NO_COVERAGE 49.49 Location : calcCrossPoints Killed by : none Substituted 0 with -1 → NO_COVERAGE 50.50 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 51.51 Location : calcCrossPoints Killed by : none Substituted 2 with 1 → NO_COVERAGE 52.52 Location : calcCrossPoints Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 470 |
|
1.1 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Negated double local variable number 5 → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 13 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 5 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 9 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double division with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double division with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double division with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 13 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 13 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 13 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 13 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 471 |
|
1.1 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 18 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 3 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double addition with multiplication → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double multiplication with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double addition with division → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Replaced double addition with modulus → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Substituted 0 with -1 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Substituted 0 with 1 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 39.39 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 40.40 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 41.41 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE 42.42 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 43.43 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE
|
| 472 |
|
1.1 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Negated double local variable number 7 → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 13 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 7 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 11 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double division with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double division with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double division with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 13 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 11 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 13 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 11 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 13 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 11 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 13 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 11 → NO_COVERAGE
|
| 473 |
|
1.1 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 18 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 3 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double addition with multiplication → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double multiplication with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double addition with division → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Replaced double addition with modulus → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Substituted 1 with -1 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Substituted 1 with -1 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Substituted 1 with 2 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Substituted 1 with 0 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 39.39 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 40.40 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 41.41 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 42.42 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE 43.43 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 44.44 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE
|
| 474 |
|
1.1 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Negated double local variable number 5 → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 15 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 5 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 9 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double division with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double division with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double division with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 5 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 9 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 5 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 9 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 5 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 9 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 5 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 9 → NO_COVERAGE
|
| 475 |
|
1.1 Location : calcCrossPoints Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 18 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 3 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double addition with multiplication → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double multiplication with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double addition with division → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Replaced double addition with modulus → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Substituted 2 with 1 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Substituted 2 with -1 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Substituted 2 with -2 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Substituted 2 with 3 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Substituted 2 with 1 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 40.40 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 41.41 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 42.42 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 43.43 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE 44.44 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 45.45 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE
|
| 476 |
|
1.1 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Negated double local variable number 7 → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 15 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 7 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 11 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double division with multiplication → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double division with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double division with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double division with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 15 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 7 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 11 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 15 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 7 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 11 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 15 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 7 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 11 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 15 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 7 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 11 → NO_COVERAGE
|
| 477 |
|
1.1 Location : calcCrossPoints Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 3.3 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 4.4 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 5.5 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 6.6 Location : calcCrossPoints Killed by : none Negated double local variable number 18 → NO_COVERAGE 7.7 Location : calcCrossPoints Killed by : none Negated double local variable number 3 → NO_COVERAGE 8.8 Location : calcCrossPoints Killed by : none Negated double local variable number 1 → NO_COVERAGE 9.9 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 10.10 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 11.11 Location : calcCrossPoints Killed by : none Replaced double operation by second member → NO_COVERAGE 12.12 Location : calcCrossPoints Killed by : none Replaced double subtraction with addition → NO_COVERAGE 13.13 Location : calcCrossPoints Killed by : none Replaced double multiplication with division → NO_COVERAGE 14.14 Location : calcCrossPoints Killed by : none Replaced double addition with subtraction → NO_COVERAGE 15.15 Location : calcCrossPoints Killed by : none Replaced double subtraction with multiplication → NO_COVERAGE 16.16 Location : calcCrossPoints Killed by : none Replaced double multiplication with modulus → NO_COVERAGE 17.17 Location : calcCrossPoints Killed by : none Replaced double addition with multiplication → NO_COVERAGE 18.18 Location : calcCrossPoints Killed by : none Replaced double subtraction with division → NO_COVERAGE 19.19 Location : calcCrossPoints Killed by : none Replaced double multiplication with addition → NO_COVERAGE 20.20 Location : calcCrossPoints Killed by : none Replaced double addition with division → NO_COVERAGE 21.21 Location : calcCrossPoints Killed by : none Replaced double subtraction with modulus → NO_COVERAGE 22.22 Location : calcCrossPoints Killed by : none Replaced double multiplication with subtraction → NO_COVERAGE 23.23 Location : calcCrossPoints Killed by : none Replaced double addition with modulus → NO_COVERAGE 24.24 Location : calcCrossPoints Killed by : none Substituted 3 with 1 → NO_COVERAGE 25.25 Location : calcCrossPoints Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : calcCrossPoints Killed by : none Substituted 3 with -1 → NO_COVERAGE 27.27 Location : calcCrossPoints Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : calcCrossPoints Killed by : none Substituted 3 with 4 → NO_COVERAGE 29.29 Location : calcCrossPoints Killed by : none Substituted 3 with 2 → NO_COVERAGE 30.30 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 31.31 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 32.32 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 33.33 Location : calcCrossPoints Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 34.34 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 35.35 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 36.36 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 37.37 Location : calcCrossPoints Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 38.38 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 39.39 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 40.40 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 41.41 Location : calcCrossPoints Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 42.42 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 43.43 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE 44.44 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 45.45 Location : calcCrossPoints Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE
|
| 478 |
|
1.1 Location : calcCrossPoints Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints → NO_COVERAGE 2.2 Location : calcCrossPoints Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::calcCrossPoints to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 509 |
|
1.1 Location : createSegmentA Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 510 |
|
1.1 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 512 |
|
1.1 Location : createSegmentA Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 513 |
|
1.1 Location : createSegmentA Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 515 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 516 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 517 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 518 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 519 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 520 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 521 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 522 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 523 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 524 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 525 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 526 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 527 |
|
1.1 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 528 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 530 |
|
1.1 Location : createSegmentA Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 532 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 533 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 534 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 535 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 536 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 537 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 538 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 539 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 540 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 541 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 542 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 543 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 544 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 545 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 546 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 547 |
|
1.1 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 548 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 550 |
|
1.1 Location : createSegmentA Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 552 |
|
1.1 Location : createSegmentA Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 553 |
|
1.1 Location : createSegmentA Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 554 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 555 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 556 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 557 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 558 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 559 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 560 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 561 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 562 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 563 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 564 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 565 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 566 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 567 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 568 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 569 |
|
1.1 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 570 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 572 |
|
1.1 Location : createSegmentA Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 574 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 575 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 576 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 577 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 578 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 579 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 580 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 581 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 582 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 583 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 584 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 585 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 586 |
|
1.1 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentA Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 587 |
|
1.1 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentA Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 588 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 589 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 590 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 591 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 9 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 8 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 9 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 8 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 9 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 8 with -8 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 9 with -9 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 8 with 9 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 9 with 10 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 8 with 7 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 9 with 8 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 593 |
|
1.1 Location : createSegmentA Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 594 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 596 |
|
1.1 Location : createSegmentA Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 599 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 600 |
|
1.1 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 601 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 602 |
|
1.1 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 603 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 604 |
|
1.1 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 605 |
|
1.1 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 606 |
|
1.1 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 607 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 608 |
|
1.1 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 609 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 610 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 611 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE
|
| 612 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 613 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 614 |
|
1.1 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentA Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentA Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentA Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentA Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentA Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentA Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentA Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentA Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentA Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentA Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentA Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentA Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentA Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentA Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentA Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentA Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentA Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentA Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentA Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentA Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentA Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentA Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentA Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentA Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentA Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentA Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentA Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentA Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentA Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentA Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentA Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentA Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentA Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentA Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentA Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentA Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentA Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentA Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentA Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentA Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentA Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 616 |
|
1.1 Location : createSegmentA Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA → NO_COVERAGE 2.2 Location : createSegmentA Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentA to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 647 |
|
1.1 Location : createSegmentB Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 648 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 649 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 650 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 651 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 652 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 653 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 654 |
|
1.1 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 655 |
|
1.1 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 656 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 657 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 658 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 659 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 660 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 661 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 664 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 666 |
|
1.1 Location : createSegmentB Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 667 |
|
1.1 Location : createSegmentB Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 668 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 669 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 670 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 671 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 672 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 673 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 674 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 675 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 676 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 677 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 678 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 679 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 680 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 681 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 682 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 683 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 685 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 686 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 688 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 690 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 691 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 692 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 693 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 694 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 695 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 696 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 697 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 698 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 699 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 700 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 701 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 702 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 703 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 704 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 705 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE
|
| 706 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 707 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 708 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 710 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 711 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 713 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 716 |
|
1.1 Location : createSegmentB Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 717 |
|
1.1 Location : createSegmentB Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 718 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 719 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 720 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 721 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 722 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 723 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 724 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 725 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 726 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 727 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 728 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 729 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 730 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 731 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 732 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 733 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 734 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 735 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 736 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 738 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 739 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 741 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 743 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 744 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 745 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 746 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 747 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 748 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 749 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 750 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 751 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 752 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 753 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 754 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 755 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 756 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 757 |
|
1.1 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 10 with 1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 10 with 0 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 10 with -1 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 10 with -10 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 74.74 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 75.75 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 76.76 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 77.77 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 78.78 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 79.79 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 80.80 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 81.81 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 82.82 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 83.83 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 84.84 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 85.85 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 86.86 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 87.87 Location : createSegmentB Killed by : none Substituted 10 with 9 → NO_COVERAGE
|
| 758 |
|
1.1 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 11 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 11 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 11 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 11 with -11 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 74.74 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 75.75 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 76.76 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 77.77 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 78.78 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 79.79 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 80.80 Location : createSegmentB Killed by : none Substituted 11 with 10 → NO_COVERAGE 81.81 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 82.82 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 83.83 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 84.84 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 85.85 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 86.86 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 87.87 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 88.88 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 759 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 760 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 761 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 11 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 10 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 11 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 10 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 11 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 10 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 11 with -11 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 10 with -10 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 11 with 10 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 10 with 9 → NO_COVERAGE
|
| 762 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 10 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 11 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 10 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 11 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 10 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 11 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 10 with -10 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 11 with -11 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 10 with 11 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 11 with 12 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 10 with 9 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 11 with 10 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 763 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 764 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 766 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 767 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 769 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 772 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 773 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 774 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 775 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 776 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 777 |
|
1.1 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 778 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 779 |
|
1.1 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 780 |
|
1.1 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 781 |
|
1.1 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 782 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 783 |
|
1.1 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 784 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 785 |
|
1.1 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 786 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 787 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 788 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 789 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 9 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 8 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 9 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 8 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 9 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 8 with -8 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 9 with -9 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 8 with 9 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 9 with 10 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 8 with 7 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 9 with 8 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 790 |
|
1.1 Location : createSegmentB Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 791 |
|
1.1 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentB Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentB Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentB Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentB Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentB Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentB Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentB Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentB Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentB Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentB Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentB Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentB Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentB Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentB Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentB Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentB Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentB Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentB Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentB Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentB Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentB Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentB Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentB Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 794 |
|
1.1 Location : createSegmentB Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB → NO_COVERAGE 2.2 Location : createSegmentB Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentB to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 826 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 827 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 828 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 829 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 830 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 831 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 832 |
|
1.1 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 833 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 836 |
|
1.1 Location : createSegmentC Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 837 |
|
1.1 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 838 |
|
1.1 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 839 |
|
1.1 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 840 |
|
1.1 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 841 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 842 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 843 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 844 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 845 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 846 |
|
1.1 Location : createSegmentC Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 848 |
|
1.1 Location : createSegmentC Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 849 |
|
1.1 Location : createSegmentC Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 850 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 851 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 852 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 853 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 854 |
|
1.1 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 855 |
|
1.1 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 856 |
|
1.1 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 857 |
|
1.1 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 858 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 859 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 860 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 861 |
|
1.1 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 862 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 864 |
|
1.1 Location : createSegmentC Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 866 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 867 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 868 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 869 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 870 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 871 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 872 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 873 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 874 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 875 |
|
1.1 Location : createSegmentC Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 878 |
|
1.1 Location : createSegmentC Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 879 |
|
1.1 Location : createSegmentC Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 880 |
|
1.1 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 883 |
|
1.1 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 884 |
|
1.1 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 885 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 886 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 887 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 888 |
|
1.1 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 889 |
|
1.1 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 890 |
|
1.1 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 891 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 892 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 893 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 894 |
|
1.1 Location : createSegmentC Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 895 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 897 |
|
1.1 Location : createSegmentC Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 900 |
|
1.1 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 901 |
|
1.1 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 902 |
|
1.1 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 903 |
|
1.1 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 904 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 905 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 906 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 907 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 908 |
|
1.1 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentC Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentC Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentC Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentC Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentC Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentC Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentC Killed by : none Substituted 6 with 0 → NO_COVERAGE 20.20 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentC Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentC Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentC Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentC Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentC Killed by : none Substituted 6 with -1 → NO_COVERAGE 28.28 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentC Killed by : none Substituted 7 with -1 → NO_COVERAGE 30.30 Location : createSegmentC Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentC Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentC Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentC Killed by : none Substituted 6 with -6 → NO_COVERAGE 36.36 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentC Killed by : none Substituted 7 with -7 → NO_COVERAGE 38.38 Location : createSegmentC Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentC Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentC Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentC Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentC Killed by : none Substituted 6 with 7 → NO_COVERAGE 44.44 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentC Killed by : none Substituted 7 with 8 → NO_COVERAGE 46.46 Location : createSegmentC Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentC Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentC Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentC Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentC Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentC Killed by : none Substituted 6 with 5 → NO_COVERAGE 53.53 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentC Killed by : none Substituted 7 with 6 → NO_COVERAGE 55.55 Location : createSegmentC Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentC Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentC Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentC Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 909 |
|
1.1 Location : createSegmentC Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC → NO_COVERAGE 2.2 Location : createSegmentC Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentC to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 939 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 940 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 941 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 942 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 6 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 6 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 6 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 6 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 6 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 943 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 944 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 945 |
|
1.1 Location : createSegmentD Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 946 |
|
1.1 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 947 |
|
1.1 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 948 |
|
1.1 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 949 |
|
1.1 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 950 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 951 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 952 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 953 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 954 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 955 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 956 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 959 |
|
1.1 Location : createSegmentD Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 961 |
|
1.1 Location : createSegmentD Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 962 |
|
1.1 Location : createSegmentD Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 963 |
|
1.1 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 964 |
|
1.1 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 965 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 966 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 967 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 968 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 969 |
|
1.1 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 970 |
|
1.1 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 971 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 972 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 973 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 974 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 975 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 977 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 978 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 980 |
|
1.1 Location : createSegmentD Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 982 |
|
1.1 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 985 |
|
1.1 Location : createSegmentD Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 986 |
|
1.1 Location : createSegmentD Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 988 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 989 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 990 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 991 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 992 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 993 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 994 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 995 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 996 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 997 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 999 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1000 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1002 |
|
1.1 Location : createSegmentD Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1004 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1005 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1006 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1007 |
|
1.1 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1008 |
|
1.1 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1009 |
|
1.1 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1010 |
|
1.1 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1011 |
|
1.1 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1012 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1013 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1014 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1015 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1016 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1018 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1019 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1021 |
|
1.1 Location : createSegmentD Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1024 |
|
1.1 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1025 |
|
1.1 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1026 |
|
1.1 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1027 |
|
1.1 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1028 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1029 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1030 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1031 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1032 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentD Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentD Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1033 |
|
1.1 Location : createSegmentD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1034 |
|
1.1 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentD Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentD Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentD Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentD Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentD Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentD Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentD Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentD Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentD Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentD Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentD Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentD Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentD Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentD Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentD Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentD Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentD Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentD Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentD Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentD Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentD Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentD Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentD Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1037 |
|
1.1 Location : createSegmentD Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD → NO_COVERAGE 2.2 Location : createSegmentD Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentD to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1067 |
|
1.1 Location : createSegmentE Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 1068 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1069 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1070 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1071 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1072 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1073 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1074 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1075 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1076 |
|
1.1 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1077 |
|
1.1 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1078 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1079 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1080 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1081 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1082 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1083 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1084 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1085 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1086 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1087 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1089 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1091 |
|
1.1 Location : createSegmentE Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 1092 |
|
1.1 Location : createSegmentE Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1093 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1094 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1095 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1096 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1097 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1098 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1099 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1100 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1101 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1102 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1103 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1104 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1105 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1106 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1107 |
|
1.1 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 10 with 1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 10 with 0 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 10 with -1 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 10 with -10 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 74.74 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 75.75 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 76.76 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 77.77 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 78.78 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 79.79 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 80.80 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 81.81 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 82.82 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 83.83 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 84.84 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 85.85 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE 86.86 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 87.87 Location : createSegmentE Killed by : none Substituted 10 with 9 → NO_COVERAGE
|
| 1108 |
|
1.1 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 11 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 11 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 11 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 11 with -11 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 74.74 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 75.75 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 76.76 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 77.77 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 78.78 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 79.79 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 80.80 Location : createSegmentE Killed by : none Substituted 11 with 10 → NO_COVERAGE 81.81 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 82.82 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 83.83 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 84.84 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 85.85 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 86.86 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 87.87 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 88.88 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1109 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1110 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1111 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 11 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 10 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 11 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 10 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 11 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 10 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 11 with -11 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 10 with -10 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 11 with 10 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 10 with 9 → NO_COVERAGE
|
| 1112 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 10 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 11 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 10 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 11 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 10 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 11 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 10 with -10 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 11 with -11 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 10 with 11 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 11 with 12 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 10 with 9 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 11 with 10 → NO_COVERAGE
|
| 1113 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1114 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1116 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1117 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1119 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1121 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1122 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1123 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1124 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1125 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1126 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1127 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1128 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1129 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1130 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1131 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1132 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1133 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1134 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1135 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1136 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1137 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1138 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1139 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1141 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1142 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1144 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1147 |
|
1.1 Location : createSegmentE Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1148 |
|
1.1 Location : createSegmentE Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1149 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1150 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1151 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1152 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1153 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1154 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1155 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1156 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1157 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1158 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1159 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1160 |
|
1.1 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1161 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1162 |
|
1.1 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1163 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1164 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1165 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1166 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1167 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1169 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1170 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1172 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1174 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1175 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1176 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1177 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1178 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1179 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1180 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1181 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1182 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1183 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1184 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1185 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1186 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1187 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1188 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1189 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1191 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1192 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1194 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1197 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1198 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1199 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1200 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1201 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1202 |
|
1.1 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Negated double local variable number 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double local variable number 8 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 1 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 8 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 8 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 8 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 8 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1203 |
|
1.1 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1204 |
|
1.1 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1205 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1206 |
|
1.1 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1207 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1208 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 5 with -5 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 5 with 6 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 5 with 4 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1209 |
|
1.1 Location : createSegmentE Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Negated integer local variable number 24 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none Incremented (a++) integer local variable number 24 → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Decremented (a--) integer local variable number 24 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Incremented (++a) integer local variable number 24 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Decremented (--a) integer local variable number 24 → NO_COVERAGE
|
| 1210 |
|
1.1 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentE Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentE Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentE Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentE Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentE Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentE Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentE Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentE Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentE Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentE Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentE Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentE Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentE Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentE Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentE Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentE Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentE Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentE Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentE Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentE Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentE Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentE Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentE Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1213 |
|
1.1 Location : createSegmentE Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE → NO_COVERAGE 2.2 Location : createSegmentE Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentE to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1244 |
|
1.1 Location : createSegmentF Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 1245 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1246 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1247 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1248 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1249 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1250 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1251 |
|
1.1 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1252 |
|
1.1 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1253 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1254 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1255 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1256 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1257 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1258 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1259 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1260 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1262 |
|
1.1 Location : createSegmentF Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1264 |
|
1.1 Location : createSegmentF Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE
|
| 1265 |
|
1.1 Location : createSegmentF Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1266 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1267 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1268 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1269 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1270 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1271 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1272 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1273 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1274 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1275 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1276 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1277 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1278 |
|
1.1 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 8 with 1 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 8 with 0 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 8 with -1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 8 with -8 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 62.62 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 63.63 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 64.64 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 65.65 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 68.68 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 69.69 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 70.70 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 71.71 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE 72.72 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 73.73 Location : createSegmentF Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1279 |
|
1.1 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 9 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 9 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 9 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 9 with -9 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 62.62 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 63.63 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 64.64 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 65.65 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 66.66 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 67.67 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 68.68 Location : createSegmentF Killed by : none Substituted 9 with 8 → NO_COVERAGE 69.69 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 70.70 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 71.71 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 72.72 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 73.73 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 74.74 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1280 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1281 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1282 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 8 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 8 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 9 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 8 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 9 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 8 with -8 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 9 with -9 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 8 with 7 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 9 with 8 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1283 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 9 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 8 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 9 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 8 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 9 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 8 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 9 with -9 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 8 with -8 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 9 with 10 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 8 with 9 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 9 with 8 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 8 with 7 → NO_COVERAGE
|
| 1285 |
|
1.1 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1286 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1288 |
|
1.1 Location : createSegmentF Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1290 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1291 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1292 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1293 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1294 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1295 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1296 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1297 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 16 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 16 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 16 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 16 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 16 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1298 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1299 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1300 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1301 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1302 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1303 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1304 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 1305 |
|
1.1 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1306 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1308 |
|
1.1 Location : createSegmentF Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1311 |
|
1.1 Location : createSegmentF Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Less or equal to less than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Less or equal to greater than → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Less or equal to greater or equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Less or equal to equal → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Less or equal to not equal → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1312 |
|
1.1 Location : createSegmentF Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with false → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none removed conditional - replaced comparison check with true → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Less than to less or equal → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Less than to greater than → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Less than to greater or equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Less than to equal → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Less than to not equal → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE
|
| 1313 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1314 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1315 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1316 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1317 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1318 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1319 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1320 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 10 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 10 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 10 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 10 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 10 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1321 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1322 |
|
1.1 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1323 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1324 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1325 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1326 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE
|
| 1327 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 6 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 7 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 6 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 7 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 6 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 7 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 6 with -6 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 7 with -7 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 6 with 7 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 7 with 8 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 6 with 5 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 7 with 6 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1328 |
|
1.1 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1329 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1331 |
|
1.1 Location : createSegmentF Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1333 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::<init> → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1334 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::setProperty → NO_COVERAGE
|
| 1335 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1336 |
|
1.1 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double array field → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (a++) double array field → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (a--) double array field → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Incremented (++a) double array field → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Decremented (--a) double array field → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1337 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1338 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 12 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 12 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 12 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 12 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 12 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1339 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 18 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 18 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 18 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 18 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 18 → NO_COVERAGE
|
| 1340 |
|
1.1 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addVertex → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Negated double local variable number 3 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Negated double local variable number 14 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated double local variable number 20 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 14 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Incremented (a++) double local variable number 20 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 3 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 14 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Decremented (a--) double local variable number 20 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 3 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 14 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Incremented (++a) double local variable number 20 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 3 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 14 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Decremented (--a) double local variable number 20 → NO_COVERAGE
|
| 1341 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1342 |
|
1.1 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE
|
| 1343 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE
|
| 1344 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1346 |
|
1.1 Location : createSegmentF Killed by : none negated conditional → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none removed conditional - replaced equality check with false → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none removed conditional - replaced equality check with true → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Negated integer local variable number 25 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none equal to less than → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none equal to less or equal → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none equal to greater than → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none equal to greater or equal → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none equal to not equal → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none Incremented (a++) integer local variable number 25 → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Decremented (a--) integer local variable number 25 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Incremented (++a) integer local variable number 25 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Decremented (--a) integer local variable number 25 → NO_COVERAGE
|
| 1347 |
|
1.1 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 4.4 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 6.6 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 7.7 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 8.8 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 9.9 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 10.10 Location : createSegmentF Killed by : none removed call to org/jfree/chart3d/graphics3d/Object3D::addFace → NO_COVERAGE 11.11 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 12.12 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 13.13 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 14.14 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 15.15 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 16.16 Location : createSegmentF Killed by : none Substituted 5 with 1 → NO_COVERAGE 17.17 Location : createSegmentF Killed by : none Substituted 3 with 1 → NO_COVERAGE 18.18 Location : createSegmentF Killed by : none Substituted 4 with 1 → NO_COVERAGE 19.19 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 20.20 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 21.21 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 22.22 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 23.23 Location : createSegmentF Killed by : none Substituted 2 with 0 → NO_COVERAGE 24.24 Location : createSegmentF Killed by : none Substituted 5 with 0 → NO_COVERAGE 25.25 Location : createSegmentF Killed by : none Substituted 3 with 0 → NO_COVERAGE 26.26 Location : createSegmentF Killed by : none Substituted 4 with 0 → NO_COVERAGE 27.27 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 28.28 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 29.29 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 30.30 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 31.31 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 32.32 Location : createSegmentF Killed by : none Substituted 2 with -1 → NO_COVERAGE 33.33 Location : createSegmentF Killed by : none Substituted 5 with -1 → NO_COVERAGE 34.34 Location : createSegmentF Killed by : none Substituted 3 with -1 → NO_COVERAGE 35.35 Location : createSegmentF Killed by : none Substituted 4 with -1 → NO_COVERAGE 36.36 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 37.37 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 38.38 Location : createSegmentF Killed by : none Substituted 1 with -1 → NO_COVERAGE 39.39 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 40.40 Location : createSegmentF Killed by : none Substituted 2 with -2 → NO_COVERAGE 41.41 Location : createSegmentF Killed by : none Substituted 5 with -5 → NO_COVERAGE 42.42 Location : createSegmentF Killed by : none Substituted 3 with -3 → NO_COVERAGE 43.43 Location : createSegmentF Killed by : none Substituted 4 with -4 → NO_COVERAGE 44.44 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 45.45 Location : createSegmentF Killed by : none Substituted 0 with 1 → NO_COVERAGE 46.46 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 47.47 Location : createSegmentF Killed by : none Substituted 1 with 2 → NO_COVERAGE 48.48 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 49.49 Location : createSegmentF Killed by : none Substituted 2 with 3 → NO_COVERAGE 50.50 Location : createSegmentF Killed by : none Substituted 5 with 6 → NO_COVERAGE 51.51 Location : createSegmentF Killed by : none Substituted 3 with 4 → NO_COVERAGE 52.52 Location : createSegmentF Killed by : none Substituted 4 with 5 → NO_COVERAGE 53.53 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE 54.54 Location : createSegmentF Killed by : none Substituted 0 with -1 → NO_COVERAGE 55.55 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 56.56 Location : createSegmentF Killed by : none Substituted 1 with 0 → NO_COVERAGE 57.57 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 58.58 Location : createSegmentF Killed by : none Substituted 2 with 1 → NO_COVERAGE 59.59 Location : createSegmentF Killed by : none Substituted 5 with 4 → NO_COVERAGE 60.60 Location : createSegmentF Killed by : none Substituted 3 with 2 → NO_COVERAGE 61.61 Location : createSegmentF Killed by : none Substituted 4 with 3 → NO_COVERAGE
|
| 1349 |
|
1.1 Location : createSegmentF Killed by : none replaced return value with null for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF → NO_COVERAGE 2.2 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1352 |
|
1.1 Location : createSegmentF Killed by : none mutated return of Object value for org/jfree/chart3d/renderer/category/LineRenderer3D::createSegmentF to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 1364 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to equal → KILLED
|
| 1365 |
|
1.1 Location : equals Killed by : none replaced boolean return with false for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → NO_COVERAGE 2.2 Location : equals Killed by : none Substituted 1 with 0 → NO_COVERAGE 3.3 Location : equals Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE 4.4 Location : equals Killed by : none Substituted 1 with 0 → NO_COVERAGE 5.5 Location : equals Killed by : none Substituted 1 with -1 → NO_COVERAGE 6.6 Location : equals Killed by : none Substituted 1 with -1 → NO_COVERAGE 7.7 Location : equals Killed by : none Substituted 1 with 2 → NO_COVERAGE 8.8 Location : equals Killed by : none Substituted 1 with 0 → NO_COVERAGE
|
| 1367 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with false → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to less than → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to less or equal → KILLED 6.6 Location : equals Killed by : none not equal to greater than → SURVIVED 7.7 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to greater or equal → KILLED 8.8 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to equal → KILLED
|
| 1368 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 7.7 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED
|
| 1371 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with false → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field lineWidth → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field lineWidth → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to less than → KILLED 7.7 Location : equals Killed by : none equal to less or equal → SURVIVED 8.8 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to greater than → KILLED 9.9 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to greater or equal → KILLED 10.10 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to not equal → KILLED 11.11 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field lineWidth → KILLED 12.12 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field lineWidth → KILLED 13.13 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field lineWidth → KILLED 14.14 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field lineWidth → KILLED 15.15 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field lineWidth → KILLED 16.16 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field lineWidth → KILLED 17.17 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED 18.18 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED
|
| 1372 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 7.7 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED
|
| 1374 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with false → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field lineHeight → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field lineHeight → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to less than → KILLED 7.7 Location : equals Killed by : none equal to less or equal → SURVIVED 8.8 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to greater than → KILLED 9.9 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to greater or equal → KILLED 10.10 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to not equal → KILLED 11.11 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field lineHeight → KILLED 12.12 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field lineHeight → KILLED 13.13 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field lineHeight → KILLED 14.14 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field lineHeight → KILLED 15.15 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field lineHeight → KILLED 16.16 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field lineHeight → KILLED 17.17 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED 18.18 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED
|
| 1375 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 7.7 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED
|
| 1377 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : none removed conditional - replaced equality check with false → SURVIVED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field isolatedItemWidthPercent → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Negated double field isolatedItemWidthPercent → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to less than → KILLED 7.7 Location : equals Killed by : none equal to less or equal → SURVIVED 8.8 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to greater than → KILLED 9.9 Location : equals Killed by : none equal to greater or equal → SURVIVED 10.10 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) equal to not equal → KILLED 11.11 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field isolatedItemWidthPercent → KILLED 12.12 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (a++) double field isolatedItemWidthPercent → KILLED 13.13 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field isolatedItemWidthPercent → KILLED 14.14 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (a--) double field isolatedItemWidthPercent → KILLED 15.15 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field isolatedItemWidthPercent → KILLED 16.16 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Incremented (++a) double field isolatedItemWidthPercent → KILLED 17.17 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED 18.18 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Decremented (--a) double field → KILLED
|
| 1378 |
|
1.1 Location : equals Killed by : none replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → NO_COVERAGE 2.2 Location : equals Killed by : none Substituted 0 with 1 → NO_COVERAGE 3.3 Location : equals Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE 4.4 Location : equals Killed by : none Substituted 0 with 1 → NO_COVERAGE 5.5 Location : equals Killed by : none Substituted 0 with -1 → NO_COVERAGE 6.6 Location : equals Killed by : none Substituted 0 with 1 → NO_COVERAGE 7.7 Location : equals Killed by : none Substituted 0 with -1 → NO_COVERAGE
|
| 1380 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) negated conditional → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed call to org/jfree/chart3d/internal/ObjectUtils::equals → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with false → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed conditional - replaced equality check with true → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to less than → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to less or equal → KILLED 7.7 Location : equals Killed by : none not equal to greater than → SURVIVED 8.8 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to greater or equal → KILLED 9.9 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) not equal to equal → KILLED
|
| 1381 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 5.5 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED 6.6 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with 1 → KILLED 7.7 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) Substituted 0 with -1 → KILLED
|
| 1383 |
|
1.1 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with false for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 2.2 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testEquals(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced boolean return with true for org/jfree/chart3d/renderer/category/LineRenderer3D::equals → KILLED 3.3 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) removed call to org/jfree/chart3d/renderer/category/AbstractCategoryRenderer3D::equals → KILLED 4.4 Location : equals Killed by : org.jfree.chart3d.renderer.category.LineRenderer3DTest.testSerialization(org.jfree.chart3d.renderer.category.LineRenderer3DTest) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|